Thanks to visit codestin.com
Credit goes to github.com

Skip to content

experiment with starting the threadpool at size 1 #1285

experiment with starting the threadpool at size 1

experiment with starting the threadpool at size 1 #1285

Workflow file for this run

name: Lint
on: [pull_request]
permissions: {}
jobs:
cpp-linter:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- uses: cpp-linter/cpp-linter-action@v2
id: linter
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
style: file
version: 19 # Ubuntu 24.04 provides clang-format-19
tidy-checks: '-*' # disable clang-tidy
lines-changed-only: true
# ignore bundled files
ignore: 'libvips/foreign/libnsgif|fuzz/StandaloneFuzzTargetMain.c'
- name: Fail fast
continue-on-error: true # TODO: remove this line in the future
if: steps.linter.outputs.checks-failed > 0
run: exit 1