diff --git a/.github/workflows/check-developer-experience.yml b/.github/workflows/check-developer-experience.yml index 6be86072..44f9c505 100644 --- a/.github/workflows/check-developer-experience.yml +++ b/.github/workflows/check-developer-experience.yml @@ -81,30 +81,34 @@ jobs: - run: just cargo +${{matrix.rust.toolchain}} build --locked --profile=debug --target=x86_64-unknown-linux-gnu continue-on-error: ${{ matrix.rust.optional }} - - run: | + - name: "tests: rust ${{ matrix.rust.toolchain }} profile=debug target=x86_64-unknown-linux-gnu" + run: | export GITHUB_STEP_SUMMARY - just debug=true rust=${{matrix.cargo.toolchain}} profile=debug target=x86_64-unknown-linux-gnu test + just debug=true rust=${{matrix.rust.toolchain}} profile=debug target=x86_64-unknown-linux-gnu test continue-on-error: ${{ matrix.rust.optional }} - run: just cargo +${{matrix.rust.toolchain}} build --locked --profile=debug --target=x86_64-unknown-linux-musl continue-on-error: ${{ matrix.rust.optional }} - - run: | + - name: "tests: rust ${{ matrix.rust.toolchain }} profile=debug target=x86_64-unknown-linux-musl" + run: | export GITHUB_STEP_SUMMARY - just debug=true rust=${{matrix.cargo.toolchain}} profile=debug target=x86_64-unknown-linux-musl test + just debug=true rust=${{matrix.rust.toolchain}} profile=debug target=x86_64-unknown-linux-musl test continue-on-error: ${{ matrix.rust.optional }} - run: just cargo +${{matrix.rust.toolchain}} build --locked --profile=release --target=x86_64-unknown-linux-gnu continue-on-error: ${{ matrix.rust.optional }} - - run: | + - name: "tests: rust ${{ matrix.rust.toolchain }} profile=release target=x86_64-unknown-linux-gnu" + run: | export GITHUB_STEP_SUMMARY - just debug=true rust=${{matrix.cargo.toolchain}} profile=release target=x86_64-unknown-linux-gnu test + just debug=true rust=${{matrix.rust.toolchain}} profile=release target=x86_64-unknown-linux-gnu test continue-on-error: ${{ matrix.rust.optional }} - run: just cargo +${{matrix.rust.toolchain}} build --locked --profile=release --target=x86_64-unknown-linux-musl continue-on-error: ${{ matrix.rust.optional }} - - run: | + - name: "tests: rust ${{ matrix.rust.toolchain }} profile=release target=x86_64-unknown-linux-musl" + run: | export GITHUB_STEP_SUMMARY - just debug=true rust=${{matrix.cargo.toolchain}} profile=release target=x86_64-unknown-linux-musl test + just debug=true rust=${{matrix.rust.toolchain}} profile=release target=x86_64-unknown-linux-musl test continue-on-error: ${{ matrix.rust.optional }} - uses: actions/upload-artifact@v4