Add gitea workflow (#78)
All checks were successful
Backend Build and Test / build (push) Successful in 2m9s

Reviewed-on: #78
This commit was merged in pull request #78.
This commit is contained in:
2025-05-25 14:20:38 +02:00
parent a8e3332723
commit a82040720a
3 changed files with 63 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
name: Backend Build and Test
on: [push]
jobs:
build:
runs-on: standard-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