From ead3b58e118841ec33c33a29483ba3539b632aa4 Mon Sep 17 00:00:00 2001 From: Yusuke Kuoka Date: Mon, 13 Jun 2022 01:19:12 +0000 Subject: [PATCH] Add CI workflow --- .github/workflows/ci.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 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..4f0e3fb --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,21 @@ +name: Go + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + + tests: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Set up Go + uses: actions/setup-go@v3 + with: + go-version: 1.18 + cache: true + - name: Build + run: make build