Migrating to Gitea CI
All checks were successful
Tests / build (push) Successful in 1m14s
Docker / docker (push) Successful in 44s

This commit is contained in:
2026-01-16 11:45:59 +01:00
parent e26f7ff164
commit 07185ff894
3 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
name: Tests
on:
push:
branches:
- master
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go stable
uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: "Running unit tests"
run: go test ./... -v