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 6547070 commit f50d14fCopy full SHA for f50d14f
.github/workflows/tests.yml
@@ -26,12 +26,20 @@ jobs:
26
steps:
27
- uses: actions/checkout@v4
28
29
- - name: Create list.txt
30
- run: echo "moevm/github_repo_commitment_calc" > list.txt
+ - name: Cache pip
+ uses: actions/cache@v3
31
+ with:
32
+ path: ~/.cache/pip
33
+ key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
34
+ restore-keys: |
35
+ ${{ runner.os }}-pip-
36
37
- name: Install dependencies
38
run: pip install -r requirements.txt
39
40
+ - name: Create list.txt
41
+ run: echo "moevm/github_repo_commitment_calc" > list.txt
42
+
43
- name: Run test
44
run: |
45
python3 main.py ${{ matrix.args }} --token ${{ secrets.TEST_TOKEN_GITHUB }} --list list.txt --out out1.csv --branch master
0 commit comments