Skip to content

Feat/long-term scheduler (#20) #64

Feat/long-term scheduler (#20)

Feat/long-term scheduler (#20) #64

Workflow file for this run

name: Test
on: [ push, pull_request, workflow_dispatch ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
go: [ 1.21.x, 1.22.x ]
env:
OS: ${{ matrix.os }}
GO: ${{ matrix.go }}
steps:
- uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Run tests
run: go test -race -coverprofile coverage.txt -covermode atomic ./...