From 531c1fb4f7b5aa598f3fccc5bb085fe1e2a2d9cb Mon Sep 17 00:00:00 2001 From: Jason Hall Date: Wed, 26 May 2021 15:50:22 -0400 Subject: [PATCH] Add CI --- .github/workflows/ci.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..87deb72 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,16 @@ +name: CI + +on: + pull_request: + branches: ['main'] + +jobs: + ci: + name: CI + runs-on: ['ubuntu-latest'] + steps: + - uses: actions/setup-go@v2 + with: + go-version: 1.16 + - uses: actions/checkout@v2 + - run: go build ./...