Skip to content

State machines, command queues, workflows #127

State machines, command queues, workflows

State machines, command queues, workflows #127

Workflow file for this run

name: CI
on: [ pull_request ]
jobs:
test-go:
name: Test implementation in Golang
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: ^1.19
id: go
- run: cd cmd/mkunion; go get -v -t -d ./...
- run: cd cmd/mkunion; go build -o mkunion
- run: go get -v -t -d ./...
- run: go generate ./...
- run: go test -v ./...