ci: Added test workflow running on each push except tags

This commit is contained in:
Patrick Sy 2025-10-07 16:08:48 +02:00
parent 06f921963a
commit 0f3cc90b01

23
.github/workflows/test.yaml vendored Normal file
View file

@ -0,0 +1,23 @@
name: test
on:
push:
branches:
- '*'
tags-ignore:
- '*'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: ">=1.25.1"
- name: Test code
run: make test