doc: logo #70
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: Run Linting | |
on: | |
push: | |
branches: | |
- develop | |
tags: # ignores pushes to tags | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup Environment | |
uses: ./.github/actions/setup_environment | |
- name: Lint | |
run: pre-commit run --all-files | |
- name: Required modifications | |
if: ${{ failure() }} | |
run: git --no-pager diff |