Skip to content

chore: bump linter action deps #40

chore: bump linter action deps

chore: bump linter action deps #40

Workflow file for this run

name: Linter
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
paths-ignore:
- '**.md'
- 'docs/**'
push:
branches:
- main
paths-ignore:
- '**.md'
- 'docs/**'
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Run clang-format
run: sudo apt update && sudo apt install clang-format-17 && tools/run-clang-format.sh
- uses: astral-sh/ruff-action@4919ec5cf1f49eff0871dbcea0da843445b837e6 # v3.6.1
name: Lint with Ruff
with:
version: 0.5.1