Skip to content

Commit

Permalink
sheepishly fix incorrect flag in Ginkgo's own CI script; drop go 1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
onsi committed Sep 9, 2022
1 parent 0ffde58 commit 6edd355
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
version: [ '1.17', '1.18', '1.19' ]
version: [ '1.18', '1.19' ]
name: Go ${{ matrix.version }}
steps:
- uses: actions/setup-go@v2
with:
go-version: ${{ matrix.version }}
- uses: actions/checkout@v3
- run: go vet ./...
- run: go run ./ginkgo -r -randomize-all-specs -randomize-suites -race -trace -procs=2 -poll-progress-after=10s -poll-progress-interval=10s
- run: go run ./ginkgo -r -randomize-all -randomize-suites -race -trace -procs=2 -poll-progress-after=10s -poll-progress-interval=10s

0 comments on commit 6edd355

Please sign in to comment.