dcmerge/.gitea/workflows/golang-tests.yml
Markus Pesch 1c63683d97
All checks were successful
Golang Tests / unittest (push) Successful in 2m49s
Markdown linter / markdown-lint (push) Successful in 10s
chore(ci): add golang tests
2025-04-14 19:23:09 +02:00

22 lines
352 B
YAML

name: Golang Tests
on:
pull_request:
types: [ "opened", "reopened", "synchronize" ]
push:
branches:
- '**'
tags-ignore:
- '**'
jobs:
unittest:
runs-on:
- ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- uses: actions/setup-go@v5.4.0
with:
go-version: stable
- run: make test/unit