Skip to content

Commit

Permalink
Update test action (#359)
Browse files Browse the repository at this point in the history
* Update test action

* fix older versions

* fix action
  • Loading branch information
sgiehl authored Sep 6, 2023
1 parent fa17337 commit 132ee12
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,23 @@ permissions:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
python-version: [ '3.5', '3.6', '3.7', '3.8', '3.9', '3.10' ]
python-version: [ '3.7', '3.8', '3.9', '3.10' ]
operating-system: [ 'ubuntu-latest' ]
include:
- python-version: 3.5
operating-system: ubuntu-20.04
- python-version: 3.6
operating-system: ubuntu-20.04
name: Tests (Python ${{ matrix.python-version }})
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install Pytest
run: |
pip install --upgrade pip
Expand All @@ -41,4 +46,4 @@ jobs:
run: |
cd tests
./run_tests.sh
shell: bash
shell: bash

0 comments on commit 132ee12

Please sign in to comment.