Skip to content

reverse headers + ci #1

reverse headers + ci

reverse headers + ci #1

Workflow file for this run

name: Go
on:
push:
branches: [main]
pull_request:
branches:
- *

Check failure on line 8 in .github/workflows/go.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/go.yaml

Invalid workflow file

You have an error in your yaml syntax on line 8
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v5
with:
fetch-depth: 0 # needed because of the new-from-rev in golangci
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "1.25.x"
- name: golangci-lint
uses: golangci/golangci-lint-action@v8
with:
args: --timeout 5m0s
- id: govulncheck
uses: golang/govulncheck-action@v1
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v5
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "1.25.x"
- name: Running Unit Tests
run: go test ./...