Skip to content

Fix tests + enable GH test action #2

Fix tests + enable GH test action

Fix tests + enable GH test action #2

Workflow file for this run

name: Go
on: [pull_request]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod
check-latest: true
- name: Build images
run: |
./make-image.sh build all
- name: Run tests
run: |
go install
go test -timeout 0 -v ./...