Skip to content

Initial commit πŸŽ‰ #6

Initial commit πŸŽ‰

Initial commit πŸŽ‰ #6

Workflow file for this run

---
name: Test
"on":
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
permissions:
checks: write
contents: read
pull-requests: read
statuses: write
steps:
- name: βœ” Check out
uses: actions/checkout@v4
- name: 🐹 Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
check-latest: true
- name: 🧸 golangci-lint
uses: golangci/golangci-lint-action@v4
with:
version: v1.57.2
- name: πŸ”¨ Test
run: go test -short ./...