1name: Failpoint test 2on: [push, pull_request] 3permissions: read-all 4jobs: 5 test: 6 strategy: 7 matrix: 8 os: [ubuntu-latest] 9 runs-on: ${{ matrix.os }} 10 steps: 11 - uses: actions/checkout@v3 12 - uses: actions/setup-go@v3 13 with: 14 go-version: "1.17.13" 15 - run: | 16 make gofail-enable 17 make test-failpoint 18