Skip to content

♻️ Fixed version #29

♻️ Fixed version

♻️ Fixed version #29

Workflow file for this run

name: Go CI
on:
push:
jobs:
fmt_test_build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.25"
- name: Check gofmt
run: gofmt -w .
- name: Test
run: go test ./internal/...
- name: Build
run: go build ./...