Skip to content

chore: update coverage badge in README and add GitHub Actions workflo… #1

chore: update coverage badge in README and add GitHub Actions workflo…

chore: update coverage badge in README and add GitHub Actions workflo… #1

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.24'
- name: Build
run: go build ./...
- name: Test
run: go test -v ./...
- name: Lint
run: go vet ./...