Skip to content

Commit

Permalink
found it
Browse files Browse the repository at this point in the history
  • Loading branch information
Vovke committed Nov 7, 2024
1 parent dd1597d commit 2b847f4
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/rust-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ jobs:
runs-on: ubuntu-latest
steps:

- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}

- name: Checkout sources
uses: actions/[email protected]
with:
Expand All @@ -35,7 +40,11 @@ jobs:
- name: Rust Cache
uses: Swatinem/[email protected]

- name: cargo nextest
run: cargo nextest run
run: cargo nextest run --no-default-features
run: cargo nextest run --no-default-features --features sr25519
- name: cargo nextest (default)
run: cargo nextest run

- name: cargo nextest (no-default-features)
run: cargo nextest run --no-default-features

- name: cargo nextest (sr25519 feature)
run: cargo nextest run --no-default-features --features sr25519

0 comments on commit 2b847f4

Please sign in to comment.