chore: use Task, split workflows

This commit is contained in:
Henrique Dias
2025-11-13 16:51:32 +01:00
committed by GitHub
parent 38951d950f
commit 0bab2aba9e
15 changed files with 209 additions and 1492 deletions

20
.github/workflows/test.yaml vendored Normal file
View File

@@ -0,0 +1,20 @@
name: Test
on:
push:
branches:
- "master"
tags:
- "v*"
pull_request:
jobs:
backend:
name: Backend
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version: "1.25.x"
- run: go test --race ./...