Skip to content

Merge pull request #212 from bits-and-blooms/dependabot/github_action… #278

Merge pull request #212 from bits-and-blooms/dependabot/github_action…

Merge pull request #212 from bits-and-blooms/dependabot/github_action… #278

Workflow file for this run

name: Test
on: [push, pull_request]
permissions:
contents: read
jobs:
test:
strategy:
matrix:
go-version: [1.16.x, 1.17.x, 1.18.x, 1.19.x,1.20.x,1.21.x,1.22.x,1.23.x,1.24.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c #v6.1.0
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 #v4.0.0
- name: Test
run: go test ./...