We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a5b854 commit 8a28264Copy full SHA for 8a28264
.github/workflows/test.yml
@@ -39,7 +39,7 @@ env:
39
GIT_AUTHOR_NAME: CI User
40
41
jobs:
42
- pre-commit:
+ populate-pip-cache:
43
runs-on: ubuntu-22.04
44
45
strategy:
@@ -65,12 +65,21 @@ jobs:
65
- name: Install dependencies
66
run: |
67
pip install -r dev-requirements.txt
68
+
69
+ # add for mercurial tests
70
+ pip install mercurial hg-evolve
71
72
pip freeze
73
- - run: pre-commit run --all-files
74
+ - name: Install repo2docker
75
+ run: |
76
+ python -m build --wheel .
77
+ pip install dist/*.whl
78
79
+ pip freeze
80
81
test:
- needs: pre-commit
82
+ needs: populate-pip-cache
83
runs-on: ubuntu-${{ matrix.ubuntu_version }}
84
85
0 commit comments