Skip to content

Run CI on supported versions of Go #65

Run CI on supported versions of Go

Run CI on supported versions of Go #65

Workflow file for this run

on:
push:
branches:
- master
pull_request:
name: CI
jobs:
test:
name: Test
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
go-version: ["oldstable", "stable"]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Golang Environment
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Test
run: go test ./... -race -shuffle=on -v