diff --git a/.gitea/workflows/default.yaml b/.gitea/workflows/default.yaml new file mode 100644 index 0000000..1ceeba1 --- /dev/null +++ b/.gitea/workflows/default.yaml @@ -0,0 +1,14 @@ +name: Build the API +on: [push] +env: + GIN_MODE: release +jobs: + build: + needs: [test] + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-go@v3 + with: + go-version: "1.20" + check-latest: true + - run: go build -ldflags "-s -w" \ No newline at end of file