Files
budget-backend/.gitea/workflows/build.yml
kratisto fecde87e28
Some checks failed
Build / build (push) Successful in 1m28s
golangci-lint / lint (push) Has been cancelled
Test / test (push) Has been cancelled
chore: update gitea action
2026-01-27 02:26:07 +01:00

27 lines
466 B
YAML

name: Build
on:
push:
pull_request:
permissions:
contents: read
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # all history for all branches and tags
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
check-latest: true
cache: false
- name: Build
run:
go build .