From 9acd7668b56b5cb6c1c07a4ed9acb7c3f91da97b Mon Sep 17 00:00:00 2001 From: Xeronith Date: Fri, 30 Sep 2022 10:44:14 +0330 Subject: [PATCH] ci: :wrench: update workflow --- .github/workflows/main.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..9d2f1b9 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,25 @@ +name: GreatApe + +on: + push: + branches: + - master + +env: + PORT: 8080 + +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 + working-directory: greataped/app + run: go build -v ./...