Files
cariddi/.github/workflows/go.yml
T
2026-03-29 10:49:38 +02:00

28 lines
418 B
YAML

name: Go
on:
push:
branches: [ main,devel ]
pull_request:
branches: [ main,devel ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.25
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
- name: Race
run: go build -race ./...