Skip to content

Feature/readme tests #4

Feature/readme tests

Feature/readme tests #4

Workflow file for this run

name: Go CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Test on Go ${{ matrix.go }}
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.23.4']
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
cache: true
- name: Run go vet
run: go vet ./...
- name: Run tests
run: go test -v ./...