Fix issue with automatic version detection in docs #196
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: ci | |
on: [push, pull_request] | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.9 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.9 | |
- name: Install python dependencies | |
run: | | |
pip install --upgrade pip | |
pip install pre-commit~=2.2 | |
# TODO! change `pre-commit~=2.2` to `.[devtools]` | |
# ! once aiida-aurora dependency issue is resolved | |
- name: Run pre-commit hooks | |
run: | | |
pre-commit install | |
pre-commit run --all-files |