Skip to content

Commit

Permalink
GH action build (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Hodgetts authored Oct 30, 2021
1 parent 26ae260 commit 2432837
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: build and test

on:
push:
branches: [ main ]
paths-ignore:
- 'docs/**'
pull_request:
branches: [ main ]

jobs:

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17

- name: Test
run: make test

0 comments on commit 2432837

Please sign in to comment.