github.com/goravel/framework@v1.13.9/.github/workflows/lint.yml (about)

     1  name: Lint
     2  on:
     3    push:
     4      branches:
     5        - master
     6    pull_request:
     7  permissions:
     8    contents: read
     9  jobs:
    10    lint:
    11      runs-on: ubuntu-latest
    12      steps:
    13        - uses: actions/checkout@v4
    14        - uses: actions/setup-go@v4
    15          with:
    16            go-version: 'stable'
    17            cache: false
    18        - name: Lint
    19          uses: golangci/golangci-lint-action@v3
    20          with:
    21            skip-cache: true
    22            skip-pkg-cache: true
    23            skip-build-cache: true
    24            version: latest
    25            args: --timeout=30m ./...