diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..7e842f9 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,23 @@ +name: Go Build + +on: + push: + paths-ignore: + - "**.md" + branches: + - main + pull_request: + paths-ignore: + - "**.md" + +jobs: + build-docker: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-go@v3 + with: + check-latest: true + cache: true + - name: Build app + run: go build -o app