This repository was archived by the owner on Jul 12, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +11
-6
lines changed
Expand file tree Collapse file tree 2 files changed +11
-6
lines changed Original file line number Diff line number Diff line change 1313jobs :
1414 run-test :
1515 runs-on : ubuntu-latest
16+ strategy :
17+ matrix :
18+ python-version : ["3.7", "3.8", "3.9", "3.10"]
1619 steps :
1720 - name : Check out repository
18- uses : actions/checkout@v2
19- - name : Set up python
20- uses : actions/setup-python@v2
21+ uses : actions/checkout@v3
22+ - name : Set up Python ${{ matrix. python-version }}
23+ uses : actions/setup-python@v4
2124 with :
22- python-version : 3.8
25+ python-version : ${{ matrix.python-version }}
26+ cache : ' pip'
2327 - name : Install dependencies
2428 run : |
2529 python -m pip install --upgrade pip
@@ -36,12 +40,13 @@ jobs:
3640 set -o pipefail
3741 scripts/test.sh | tee ./pytest-coverage.txt
3842 - name : my-artifact
39- if : always()
43+ if : always() && !env.ACT
4044 uses : actions/upload-artifact@v3
4145 with :
4246 name : pytest-coverage
4347 path : ./pytest-coverage.txt
4448 - name : Pytest coverage comment
49+ if : always() && !env.ACT
4550 uses : MishaKav/pytest-coverage-comment@main
4651 with :
4752 pytest-coverage-path : ./pytest-coverage.txt
Original file line number Diff line number Diff line change 1- credoai-connect >= 0.0.7
1+ credoai-connect >= 0.1.2
22fairlearn >= 0.7.0
33matplotlib >= 3.0
44requests >= 2.25.1
You can’t perform that action at this time.
0 commit comments