Spaces:
Runtime error
Runtime error
FrancisGOS
commited on
Commit
·
3e31901
1
Parent(s):
a398c85
Fix CI
Browse files
.github/workflows/test.yml
CHANGED
@@ -9,13 +9,15 @@ on:
|
|
9 |
jobs:
|
10 |
build-linux:
|
11 |
runs-on: ubuntu-latest
|
|
|
|
|
|
|
12 |
steps:
|
13 |
- uses: actions/checkout@v4
|
14 |
- name: Set up Python 3.8 and install dependencies
|
15 |
-
uses: actions/setup-python@
|
16 |
with:
|
17 |
-
python-version:
|
18 |
-
cache: "pip"
|
19 |
- run: pip install -r app/requirements.txt
|
20 |
- name: install apt dependencies
|
21 |
uses: awalsh128/cache-apt-pkgs-action@latest
|
|
|
9 |
jobs:
|
10 |
build-linux:
|
11 |
runs-on: ubuntu-latest
|
12 |
+
strategy:
|
13 |
+
matrix:
|
14 |
+
python-version: [ "3.7", "3.8", "3.9"]
|
15 |
steps:
|
16 |
- uses: actions/checkout@v4
|
17 |
- name: Set up Python 3.8 and install dependencies
|
18 |
+
uses: actions/setup-python@v4
|
19 |
with:
|
20 |
+
python-version: ${{ matrix.python-version }}
|
|
|
21 |
- run: pip install -r app/requirements.txt
|
22 |
- name: install apt dependencies
|
23 |
uses: awalsh128/cache-apt-pkgs-action@latest
|