Files
tracebasedlogsampler/.gitea/workflows/ci.yaml
Timo Behrendt 9dc7115fe2
All checks were successful
CI / test (push) Successful in 19s
CI / benchmark (push) Successful in 3m36s
ci: add test and benchmark
2025-04-29 18:40:20 +02:00

25 lines
443 B
YAML

name: CI
on:
push:
branches-ignore:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: make test
benchmark:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: make benchmark