support resolving packages with validator #307
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [main] | |
paths-ignore: | |
- "docs/**" | |
pull_request: | |
branches: [main] | |
paths-ignore: | |
- "docs/**" | |
jobs: | |
test: | |
name: Check and Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "1.23.4" | |
cache: true | |
- name: Lint | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: v1.63.4 | |
args: --timeout=5m | |
- name: Format | |
run: go fmt ./... | |
- name: Vet | |
run: go vet ./... | |
- name: Test Unit | |
run: go test -short ./... |