Skip to content

Commit

Permalink
chore(ci): run tests against multiple Python on master
Browse files Browse the repository at this point in the history
  • Loading branch information
mkniewallner committed Oct 5, 2021
1 parent 8973d23 commit aa38e80
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/push_on_master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,18 @@ jobs:
run: pip install -e .[test]
- run: make style
Tests:
runs-on: ubuntu-20.04
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-20.04, macos-10.15 ]
python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10" ]
steps:
- uses: actions/checkout@v2
- run: git submodule update --init
- name: Setup Python 3.10
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: "3.10"
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: pip install -e .[test]
- name: Functional Tests
Expand Down

0 comments on commit aa38e80

Please sign in to comment.