Skip to content

Merge pull request #46 from agent-ecosystem/fix/head-fallback-to-get #84

Merge pull request #46 from agent-ecosystem/fix/head-fallback-to-get

Merge pull request #46 from agent-ecosystem/fix/head-fallback-to-get #84

Workflow file for this run

name: Run Checks
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
- uses: golangci/golangci-lint-action@v7
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Test
run: go test -race ./... -count=1
- name: Build
run: go build -o skill-validator ./cmd/skill-validator