From ef42a92c128caf0f5841d7c7fe43cbc265072f8a Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Fri, 27 Oct 2023 10:50:29 +0300 Subject: [PATCH] CI: build & upload Go project --- .github/workflows/go.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 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..9ca911d --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,30 @@ +name: Go + +on: + push: + branches: [ "v2" ] + pull_request: + branches: [ "v2" ] + +jobs: + + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: '1.20' + + - name: Build + run: go build -v ./. + + - name: Upload a Build Artifact + uses: actions/upload-artifact@v3.1.3 + with: + # Artifact name + name: "catApi" + # A file, directory or wildcard pattern that describes what to upload + path: "catApi"