API/.gitea/workflows/default.yaml
profitroll 95e9e23f0d
All checks were successful
build
Added action on push
2023-04-14 14:29:42 +02:00

14 lines
278 B
YAML

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"