30 lines
544 B
YAML
Raw Normal View History

2021-10-24 18:19:34 +02:00
name: Push
on:
push:
jobs:
build:
name: CI
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
2022-08-07 10:10:23 +02:00
# Run on the latest minor release of Go 1.19:
go-version: ^1.19
2021-10-24 18:19:34 +02:00
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Ensure all files were formatted as per gofmt
run: |
[ "$(gofmt -l $(find . -name '*.go') 2>&1)" = "" ]
- name: Build packages
run: |
go install -v ./...