Skip to content

Add a ci target branch for testing #3

Add a ci target branch for testing

Add a ci target branch for testing #3

Workflow file for this run

name: Lint
on:
push:
branches:
- main
- 'maintenance/**'
- enable-presym-in-windows
tags:
- '*'
pull_request:
concurrency:
group: ${{ github.head_ref || github.sha }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
pre-commit:
name: pre-commit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run pre-commit
run: |
python -m pip install pre-commit
pre-commit run --show-diff-on-failure --color=always --all-files