From bd4e27dede4c658984535cc0407f9e61aa52ef56 Mon Sep 17 00:00:00 2001 From: chenjunbiao Date: Tue, 27 Jul 2021 12:13:51 +0800 Subject: [PATCH] Create ci.yml add make test action in master --- .github/workflows/ci.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..01c2cdd --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,25 @@ +name: Go + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: Set up Go + uses: actions/setup-go@v2 + with: + go-version: 1.16 + +# - name: Build +# run: go build -v ./... + + - name: Test + run: make test