1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
on: [push, pull_request] name: Build and Test jobs: test: name: Build and Test runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 - name: Fetch run: cargo fetch - name: Build run: cargo build - name: Test run: cargo test