Skip to content

Workflow file for this run

name: build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
pull-requests: read
jobs:

Check failure on line 12 in .github/workflows/default.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/default.yaml

Invalid workflow file

You have an error in your yaml syntax on line 12
prebuild:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22'
- uses: golangci/golangci-lint-action@v6
with:
version: v1.58
- run: make tidy
- run: make lint
- uses: actions/upload-artifact@v4
with:
name: build
path: ${{ github.workspace }}
test:
needs: prebuild
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
name: build
- run: make test
goreleaser:
if: ${{ github.event_name == 'workflow_dispatch' }}
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
- uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: '~> v2'
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}