From 1c2010853b246a361ceac5cd31774caade22adfe Mon Sep 17 00:00:00 2001 From: Aaron Schlesinger Date: Mon, 13 Apr 2020 16:58:59 -0700 Subject: [PATCH] Adding github actions config file --- .github/workflows/go.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/go.yml diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml new file mode 100644 index 0000000..39141ec --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,18 @@ +name: Run Go tests +on: + push: + # We want to run the workflow on all branches. + # But you can restrict the runs if necessary. + branches: + - "*" + +jobs: + test: + runs-on: ubuntu-18.04 + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-go@v2-beta + with: + # The Go version to download (if necessary) and use. + go-version: '^1.13.1' + - run: go test ./...