Add a file formatting script for pre-commit #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 📊 Static Checks | |
on: [push, pull_request] | |
concurrency: | |
group: ci-${{ github.actor }}-${{ github.head_ref || github.run_number }}-${{ github.ref }}-static | |
jobs: | |
static-checks: | |
name: Code style and file formatting | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Style checks via pre-commit | |
uses: pre-commit/action@v3.0.1 | |
with: | |
extra_args: --all-files |