Bump github-pages from 231 to 232 in /docs #1250
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
mod: | |
runs-on: ubuntu-latest | |
name: Check modules | |
steps: | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: 'oldstable' | |
- uses: actions/checkout@v4 | |
- run: go mod tidy && git diff --exit-code go.mod go.sum | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
version: [ 'oldstable', 'stable' ] | |
name: Go ${{ matrix.version }} | |
steps: | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.version }} | |
- uses: actions/checkout@v4 | |
- run: go vet ./... | |
- run: go run ./ginkgo --github-output -r -randomize-all -randomize-suites -race -trace -procs=2 -poll-progress-after=10s -poll-progress-interval=10s |