build(deps): Bump wit-parser from 0.251.0 to 0.252.0 #228
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: check-test | |
| permissions: | |
| contents: read | |
| issues: read | |
| checks: write | |
| pull-requests: write | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| - latest | |
| pull_request: | |
| # If new code is pushed to a PR branch, then cancel in progress workflows for that PR. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| defaults: | |
| run: | |
| shell: bash -xe {0} | |
| jobs: | |
| ci-test: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 | |
| - uses: nixbuild/nix-quick-install-action@2c9db80fb984ceb1bcaa77cdda3fdf8cfba92035 | |
| with: | |
| github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Populate the nix store | |
| run: nix develop .#noObelisk --command echo | |
| - name: Build tests | |
| run: nix develop .#noObelisk --command cargo nextest run --workspace --all-features --no-run | |
| - name: cargo test | |
| run: nix develop .#noObelisk --command cargo nextest run --workspace --all-features --profile ${{ github.job }} | |
| env: | |
| RUST_LOG: "info,executor=trace,wasm_workers=trace,db=info" | |
| CI: true | |
| - name: Upload test results | |
| uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a | |
| with: | |
| name: junit-report | |
| path: target/nextest/${{ github.job }}/junit.xml | |
| - name: Report results in GitHub UI | |
| uses: dorny/test-reporter@a43b3a5f7366b97d083190328d2c652e1a8b6aa2 | |
| if: always() | |
| with: | |
| name: Rust tests | |
| path: target/nextest/${{ github.job }}/junit.xml | |
| reporter: java-junit |