Skip to content

Add mainProgram meta so nix can run it #87

Add mainProgram meta so nix can run it

Add mainProgram meta so nix can run it #87

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
jobs:
buildandtest:
name: Build and test
strategy:
matrix:
go-version: [^1]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Download Go modules
run: go mod download
- name: Build
run: make build
- name: Test
run: make test
- name: BDD Tests
run: make bdd