Skip to content

Bump version to v0.17.53 #17

Bump version to v0.17.53

Bump version to v0.17.53 #17

Workflow file for this run

name: Test
on: [push, pull_request]
# When a new revision is pushed to a PR, cancel all in-progress CI runs for that
# PR. See https://docs.github.com/en/actions/using-jobs/using-concurrency
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
go: ["1.18", "1.20"]
runs-on: ${{ matrix.os }}
continue-on-error: true
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Core tests
uses: nick-fields/retry@v2
with:
max_attempts: 3
timeout_minutes: 20
command: |
go mod download
go test -race ./...
- name: Example tests
uses: nick-fields/retry@v2
with:
max_attempts: 3
timeout_minutes: 20
command: |
cd _examples
go mod download
go test -race ./...