winglian commited on
Commit
8fe12e3
2 Parent(s): 37fc85a 658ed86

Merge pull request #100 from OpenAccess-AI-Collective/py310-tests

Browse files
Files changed (1) hide show
  1. .github/workflows/tests.yml +5 -2
.github/workflows/tests.yml CHANGED
@@ -1,11 +1,14 @@
1
  name: PyTest
2
- on:
3
  push:
4
  pull_request:
5
 
6
  jobs:
7
  test:
8
  runs-on: ubuntu-latest
 
 
 
9
  timeout-minutes: 10
10
 
11
  steps:
@@ -15,7 +18,7 @@ jobs:
15
  - name: Setup Python
16
  uses: actions/setup-python@v4
17
  with:
18
- python-version: "3.9"
19
  cache: 'pip' # caching pip dependencies
20
 
21
  - name: Install dependencies
 
1
  name: PyTest
2
+ on:
3
  push:
4
  pull_request:
5
 
6
  jobs:
7
  test:
8
  runs-on: ubuntu-latest
9
+ strategy:
10
+ matrix:
11
+ python_version: ["3.9", "3.10"]
12
  timeout-minutes: 10
13
 
14
  steps:
 
18
  - name: Setup Python
19
  uses: actions/setup-python@v4
20
  with:
21
+ python-version: ${{ matrix.python_version }}
22
  cache: 'pip' # caching pip dependencies
23
 
24
  - name: Install dependencies