Skip to content

Update README.md

Update README.md #21

Workflow file for this run

name: test
on:
pull_request:
branches:
- "main"
push:
branches:
- "main"
permissions:
contents: write
# packages: write
# issues: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.22
check-latest: true
- name: Test
run: go test -v ./...