Skip to content

Makefile: install all bull variants (if there are more) #49

Makefile: install all bull variants (if there are more)

Makefile: install all bull variants (if there are more) #49

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
# Latest stable version of Go, e.g. 1.20.2
go-version: 'stable'
- name: Ensure all files were formatted as per gofmt
run: |
[ "$(gofmt -l $(find . -name '*.go') 2>&1)" = "" ]
- name: staticcheck
run: go tool staticcheck ./...
- name: run tests
run: go test -v ./...