Skip to content

Commit

Permalink
Improve verbose mode
Browse files Browse the repository at this point in the history
  • Loading branch information
AlekSi committed Aug 20, 2024
1 parent 9447711 commit 706398f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/linters.yml → .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,20 @@ jobs:
runs-on: ubuntu-22.04
timeout-minutes: 5

# Do not run this job in parallel for any PR change or branch push.
concurrency:
group: ${{ github.workflow }}-linters-${{ github.head_ref || github.ref_name }}
cancel-in-progress: true

if: github.event_name != 'pull_request' || !contains(github.event.pull_request.labels.*.name, 'not ready')

steps:
# TODO https://github.com/FerretDB/github-actions/issues/211
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-depth: 0 # for `golangci-lint run --new` to work
lfs: false # LFS is used only by website

- name: Setup Go
uses: FerretDB/github-actions/setup-go@main
Expand Down

0 comments on commit 706398f

Please sign in to comment.