Skip to content

Commit

Permalink
Revert "chore(ci): make more use of nextest"
Browse files Browse the repository at this point in the history
This reverts commit d72589b.
  • Loading branch information
rholshausen committed Dec 19, 2024
1 parent f4754e3 commit ba4eb87
Showing 1 changed file with 3 additions and 22 deletions.
25 changes: 3 additions & 22 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@ on:
branches:
- master

#concurrency:
# group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
# cancel-in-progress: false

env:
RUST_BACKTRACE: "1"
RUST_LOG: "debug"
Expand All @@ -32,17 +28,14 @@ jobs:
with:
toolchain: stable
components: clippy
- uses: taiki-e/install-action@v2
with:
tool: cargo-nextest
- name: Install shared mime info DB
if: runner.os == 'macOS'
run: brew install shared-mime-info
- name: Tests
run: cargo nextest run
run: cargo test
working-directory: rust
- name: Run mock_server_logs test
run: cargo nextest run -p pact_ffi returns_mock_server_logs -- --include-ignored
run: cargo test -p pact_ffi returns_mock_server_logs -- --nocapture --include-ignored
working-directory: rust
- name: Clippy
if: runner.os == 'Linux'
Expand All @@ -55,22 +48,10 @@ jobs:
image: pactfoundation/rust-musl-build
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: clippy
- uses: taiki-e/install-action@v2
with:
tool: cargo-nextest
- uses: Swatinem/rust-cache@v2
with:
workspaces: rust
shared-key: ${{ runner.os }}-musl
- name: Tests
run: cargo nextest run
run: cargo test
working-directory: rust


check-features:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit ba4eb87

Please sign in to comment.