Skip to content

Commit

Permalink
Run tests across various Python and OS versions
Browse files Browse the repository at this point in the history
  • Loading branch information
istride committed Jul 13, 2023
1 parent 930b6b7 commit c772675
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,22 @@ on:

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os:
- ubuntu-latest
version:
- "3.8"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
- name: Set up Python ${{ matrix.version }}
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: ${{ matrix.version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade pip
pip install .
- name: Run unit tests
run: python -m unittest discover -s src

0 comments on commit c772675

Please sign in to comment.