Files
ncore-stats/.github/workflows/go.yml
T
2026-03-22 22:31:29 +01:00

26 lines
365 B
YAML

name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.26.1'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...