Skip to content

Merge pull request #13 from dmachard/dependabot/go_modules/google.gol… #48

Merge pull request #13 from dmachard/dependabot/go_modules/google.gol…

Merge pull request #13 from dmachard/dependabot/go_modules/google.gol… #48

Workflow file for this run

name: Testing
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
testing:
runs-on: ubuntu-22.04
strategy:
matrix:
go-version: ['1.21', '1.22', '1.23']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Test
run: go test -cover -v
- name: Bench
run: go test -bench .
- name: Bench with race detection
run: go test -race -bench .