1 2 3 4 5 6 7 8 9 10 11 12 13
# .github/workflows/test.yaml name: test on: [ push, pull_request ] jobs: test: runs-on: ubuntu-latest steps: - name: Checkout repository uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1 with: toolchain: stable - run: cargo test