1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
name: cargo_test run-name: testing by cargo test on: pull_request: push: branches: - main jobs: cargo_test: runs-on: ubuntu-latest steps: - name: Check out repository code uses: actions/checkout@v3 - uses: actions-rs/cargo@v1 with: command: test