fix usage with non geom layers #810
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: Check pre-commit | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install pre-commit | |
run: pip install pre-commit | |
- name: Run pre-commit | |
run: pre-commit run --all-files --show-diff-on-failure --verbose | |
- name: Pre-commit failed ! Read this | |
if: failure() | |
run: | | |
echo 'To ensure your code is properly formatted, run: pip install pre-commit; pre-commit install;' | |
echo 'Fix your current code with: pre-commit run --all-files' |