name: Tests
on:
jobs:
test-runtime:
runs-on: ubuntu-latest
strategy:
matrix:
runtime:
steps:
- uses: actions/checkout@v4
- name: Update Rust to latest
run: rustup update
- name: Run ${{ matrix.runtime }} tests
run: cargo test --no-default-features --features ${{ matrix.runtime }}