Skip to content

Remove redundant timescopes #43

Remove redundant timescopes

Remove redundant timescopes #43

Workflow file for this run

name: cpp-linter
on:
pull_request:
jobs:
cpp-linter:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
defaults:
run:
shell: bash -el {0}
steps:
- uses: actions/checkout@v4
- uses: cpp-linter/cpp-linter-action@v2
id: linter
continue-on-error: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
version: 18
ignore: .github | tests | scripts
style: file
tidy-checks: ''
lines-changed-only: true
format-review: true
tidy-review: true
passive-reviews: true
- name: Check clang-format linter status
if: steps.linter.outputs.clang-format-checks-failed != 0
run: exit 1