Files
allowance_planner_2000/.gitea/workflows/build.yml
Sebastiaan de Schaetzen 130b75831a
All checks were successful
Backend Build and Test / build (push) Successful in 19m38s
Update .gitea/workflows/build.yml
2026-02-14 15:41:51 +01:00

25 lines
411 B
YAML

name: Backend Build and Test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '>=1.24'
- name: Build
run: |
cd backend
go build .
- name: Test
run: |
cd backend
go test . -v