Skip to content

Go CI

Go CI #241

Workflow file for this run

name: Go CI
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
build:
runs-on: ubuntu-22.04
strategy:
matrix:
go-version: [1.17, 1.19, 1.22]
steps:
- uses: actions/checkout@v4
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Test
run: go test ./core/... -v -cover