Skip to content

Commit

Permalink
fix(ci): Workaround for #281
Browse files Browse the repository at this point in the history
  • Loading branch information
pan93412 committed Jan 20, 2023
1 parent e7f28e4 commit e6b3523
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/check-test-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ permissions:
actions: write
contents: read

concurrency:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

Expand All @@ -26,9 +26,14 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: actions-rust-lang/setup-rust-toolchain@v1
- uses: rui314/setup-mold@v1
- uses: taiki-e/install-action@nextest
- run: cargo nextest run && cargo test --doc
- if: runner.os != 'Windows'
uses: rui314/setup-mold@v1
- if: runner.os != 'Windows'
uses: taiki-e/install-action@nextest
- if: runner.os != 'Windows'
run: cargo nextest run && cargo test --doc
- if: runner.os == 'Windows'
run: cargo test

cargo-fmt:
runs-on: ubuntu-latest
Expand Down

0 comments on commit e6b3523

Please sign in to comment.