Skip to content

Panic pretty printing #48

Panic pretty printing

Panic pretty printing #48

Workflow file for this run

name: golangci-lint
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
# Optional: allow read access to pull request. Use with `only-new-issues` option.
# pull-requests: read
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# the default behavior of checkout is to merge master into the PR branch,
# this forces checkout to run the actual HEAD
with:
ref: ${{ github.event.pull_request.head.sha }}
- uses: actions/setup-go@v5
- name: golangci-lint
uses: golangci/golangci-lint-action@v4
with:
skip-cache: true