From 841615cb9bc0d8e73812fe6810febd12f876bee8 Mon Sep 17 00:00:00 2001 From: mjsmagalhaes Date: Wed, 22 Feb 2023 10:56:22 -0300 Subject: [PATCH] [UPDATE]: Setup action to build linux release --- .github/workflows/go.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 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..bea9bd6 --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,35 @@ +# 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@v3 + with: + go-version: 1.19 + + - name: Build + run: go build -v + + - name: Test + run: go test -v + + - name: Upload a Build Artifact + uses: actions/upload-artifact@v3.1.2 + with: + name: Tweego + path: ./tweego + # The desired behavior if no files are found using the provided path.