Skip to content

build(deps): Bump actions/checkout from 6 to 7 #233

build(deps): Bump actions/checkout from 6 to 7

build(deps): Bump actions/checkout from 6 to 7 #233

Workflow file for this run

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@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
- 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