Skip to content
This repository was archived by the owner on Jul 12, 2024. It is now read-only.

Commit 4bf1b3c

Browse files
committed
Merge branch 'release/1.1.8' of github.com:credo-ai/credoai_lens into release/1.1.8
2 parents 792ee04 + 7a40e76 commit 4bf1b3c

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,17 @@ on:
1313
jobs:
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

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
credoai-connect>=0.0.7
1+
credoai-connect>=0.1.2
22
fairlearn>=0.7.0
33
matplotlib>=3.0
44
requests>=2.25.1

0 commit comments

Comments
 (0)