From 1ed247ec97a9d90a1317a052732a34e3e56baf8a Mon Sep 17 00:00:00 2001 From: Chanh Le Date: Wed, 25 Oct 2023 22:11:42 -0400 Subject: [PATCH 1/2] Create go.yml for CI --- .github/workflows/go.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 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 0000000000..0065213b85 --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,28 @@ +# This workflow will build a golang project +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go + +name: Go + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: '1.20' + + - name: Build + run: go build -v ./... + + - name: Test + run: go test -v ./... From 77f81fd8d54f880bf3ecf9d5f21000d6cf0fb3cf Mon Sep 17 00:00:00 2001 From: Chanh Le Date: Wed, 25 Oct 2023 22:26:07 -0400 Subject: [PATCH 2/2] Update go.yml --- .github/workflows/go.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 0065213b85..1b63d98158 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -24,5 +24,5 @@ jobs: - name: Build run: go build -v ./... - - name: Test - run: go test -v ./... + # - name: Test + # run: go test -v ./...