Files
ut-agones/.gitea/workflows/ci.yaml
bp99 8c3d9fd625
All checks were successful
build-and-test / build (push) Successful in 55s
ci: fix artefact upload step
2025-07-28 20:30:04 +02:00

23 lines
566 B
YAML

---
name: build-and-test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ^1.24
- name: Build binary
run: go build -v ./...
- name: Run tests
run: go test -json ./... > test-results.json
- name: Upload artefacts
uses: https://gitea.com/actions/gitea-upload-artifact@v4
with:
name: test-results
path: test-results.json