Skip to content

Commit

Permalink
Run tests with nextest
Browse files Browse the repository at this point in the history
  • Loading branch information
garyttierney committed Oct 11, 2024
1 parent eb699b8 commit a780a68
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,12 @@ jobs:
toolchain: stable
targets: ${{ matrix.build_configuration.target }}

- uses: taiki-e/install-action@v2
with:
tool: nextest

- name: Run build
run: cargo build --target ${{ matrix.build_configuration.target }} --profile dist
run: cargo nextest run --target ${{ matrix.build_configuration.target }} --profile dist
env:
RUSTFLAGS: "-Ctarget-cpu=${{ matrix.build_configuration.cpu }}"
CARGO_TERM_COLOR: always

0 comments on commit a780a68

Please sign in to comment.