API/.gitea/workflows/default.yaml

14 lines
278 B
YAML
Raw Normal View History

2023-04-14 15:29:42 +03:00
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"