Files
hamster-tycoon/.gitea/workflows/main.yml
kratisto 542df35a26
All checks were successful
CI / build (push) Successful in 48s
chore: update golang version
2026-01-24 00:49:48 +01:00

25 lines
418 B
YAML

name: CI
on: [push]
jobs:
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: Building
run: go build .
- name: Testing
run: go test ./...