Skip to content

Update README.md

Update README.md #6

Workflow file for this run

name: Test Pipeline
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23'
cache: true
- name: Get dependencies
run: go mod download
- name: Run tests
run: make test
- name: Run linter
uses: golangci/golangci-lint-action@v3
with:
version: latest
args: --timeout=1m