Skip to content

Commit

Permalink
add GitHub Actions Continuous Integration configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
stapelberg committed Jul 18, 2021
1 parent eb60076 commit 57b503d
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Push

on:
push:
branches: [ master ]

jobs:

build:
name: CI
runs-on: ubuntu-latest
steps:

- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
# Run on the latest minor release of Go 1.16:
go-version: ^1.16
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: Run tests
run: |
go test -v ./...
go install ./cmd/...

0 comments on commit 57b503d

Please sign in to comment.