diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml deleted file mode 100644 index be2bb4ed..00000000 --- a/.github/workflows/pr.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: pr -on: - pull_request: - -jobs: - run-tests: - strategy: - matrix: - go-version: [1.22.x, 1.23.x] - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-go@v5 - with: - go-version: ${{ matrix.go-version }} - - run: | - make test - - build-test-program: - strategy: - matrix: - go-version: [1.22.x, 1.23.x] - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-go@v5 - with: - go-version: ${{ matrix.go-version }} - - run: | - make