Skip to content

Update to latest versions #51

Update to latest versions

Update to latest versions #51

Workflow file for this run

name: Verify that all unit tests are succeeding
on: push
env:
CARGO_TERM_COLOR: always
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
projects: [ "2022", "2023", "2024", "shared" ]
steps:
- uses: actions/checkout@v4
- name: Update Rust to nightly
run: rustup update nightly && rustup default nightly
- name: Setup Rust Cache
uses: Swatinem/rust-cache@v2
- name: Run tests
working-directory: ./${{ matrix.projects }}
run: cargo test --tests --no-fail-fast