Skip to content

chore: update CI to use github runner #59

chore: update CI to use github runner

chore: update CI to use github runner #59

Workflow file for this run

name: Tests
on: [ push, pull_request ]
jobs:
compatibility-test:
strategy:
matrix:
go: [ "1.20", "1.21", "1.22", "1.23" ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
cache: true
- name: Unit Test
run: go test -gcflags=-l -race -covermode=atomic ./...