Skip to content

Commit

Permalink
more nextest
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-noland committed Oct 28, 2024
1 parent 7b46f2f commit 98b2dd5
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/check-developer-experience.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,18 +69,22 @@ jobs:
node-version: "latest"
- name: Checkout
uses: actions/checkout@v4
- uses: cargo-bins/cargo-binstall@main
- name: install nextest
run: cargo install cargo-nextest --locked
run: cargo binstall --no-confirm cargo-nextest
- run: |
sudo apt-get update
sudo apt-get --yes --no-install-recommends install pkg-config
- name: install markdown-test-report
run: cargo install markdown-test-report --locked
run: cargo binstall --no-confirm markdown-test-report
- name: refresh-compile-env
run: just --yes refresh-compile-env
- run: just --yes fake-nix
- run: just cargo +${{matrix.rust.toolchain}} build --locked --profile=debug --target=x86_64-unknown-linux-gnu
continue-on-error: ${{ matrix.rust.optional }}
- run: |
NEXTEST_EXPERIMENTAL_LIBTEST_JSON=1 just cargo +${{matrix.rust.toolchain}} \
nextest --message-format libtest-json-plus --profile ci run --locked --target=x86_64-unknown-linux-gnu \
nextest --profile ci run --message-format libtest-json-plus --locked --target=x86_64-unknown-linux-gnu \
> target/nextest/ci/ci.x86_64-unknown-linux-gnu.json
markdown-test-report target/nextest/ci/ci.x86_64-unknown-linux-gnu.json -o target/nextest/ci/ci.x86_64-unknown-linux-gnu.md
cat target/nextest/ci/ci.x86_64-unknown-linux-gnu.md > $GITHUB_STEP_SUMMARY
Expand Down

0 comments on commit 98b2dd5

Please sign in to comment.