Skip to content

add example repo to readme #107

add example repo to readme

add example repo to readme #107

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '>=1.22.0'
- name: Check out code
uses: actions/checkout@v4
- name: Install dependencies
run: |
go mod tidy
- name: Run vet
run: |
go vet ./...
- name: Run tests
run: |
go test ./...