From ce85493f97fb132b3ebc50a4b45bacce5d0767a7 Mon Sep 17 00:00:00 2001 From: Robert Janetzko Date: Sun, 8 May 2022 21:24:33 +0200 Subject: [PATCH] Create go.yml --- .github/workflows/go.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 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..9efcc03 --- /dev/null +++ b/.github/workflows/go.yml @@ -0,0 +1,26 @@ +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.18 + + - name: Build MacOS + run: cd backend && GOOS=darwin GOARCH=amd64 go build -o ../bin/legendsbrowser-mac + - name: Build Linux + run: GOOS=linux GOARCH=amd64 go build -o ../bin/legendsbrowser-linux-x64 + - name: Build Windows + run: cd backend && GOOS=windows GOARCH=amd64 go build -o ../bin/legendsbrowser-win-x64.exe