Skip to content

Merge pull request #11 from HaraldNordgren/patch-2 #3

Merge pull request #11 from HaraldNordgren/patch-2

Merge pull request #11 from HaraldNordgren/patch-2 #3

Workflow file for this run

name: Go
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [oldstable, stable]
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Run tests
run: go test -race $(go list ./... | grep -v /vendor/)