some small fixes to get the flexible biomass to work #221
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: Run Pre-Commit | |
on: | |
pull_request: {} | |
push: | |
paths-ignore: | |
- 'examples/**' | |
branches: | |
- dev | |
- main | |
jobs: | |
pre-commit: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ['3.8', '3.9', '3.10'] | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v3 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Set file mode to false | |
run: | | |
git config core.filemode false | |
- uses: pre-commit/[email protected] |