We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef685f9 commit 3944779Copy full SHA for 3944779
.github/workflows/ci.yml
@@ -21,15 +21,11 @@ jobs:
21
22
- name: Install dependencies
23
run: |
24
- python -m pip install --upgrade pip
25
- python -m pip install \
26
- pre-commit==2.10.1 \
27
- -r ./requirements.txt \
+ pip install -r ./requirements.txt
28
29
- name: Run pre-commit
30
31
pre-commit run --all-files || ( git status --short ; git diff ; exit 1 )
32
33
- name: Build GH pages
34
- run: |
35
- "${GITHUB_WORKSPACE}/build.sh"
+ run: bash build.sh
requirements.txt
@@ -1 +1,2 @@
1
aiidalab==22.11.0
2
+pre-commit==2.10.1
0 commit comments