1 2 3 4 5 6 7 8 9 10 11 12
name: test on: [push, pull_request] jobs: test: runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 - run: rustup update 1.66 --no-self-update && rustup default 1.66 - run: cargo build - run: cargo test