Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,15 @@ on:

jobs:
tests:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
python-version:
- "3.8"
- "3.9"
Expand All @@ -24,6 +27,9 @@ jobs:
- "3.13"
- "3.14"
- "pypy-3.9"
exclude:
- os: windows-latest
python-version: "pypy-3.9"
steps:
- name: Check out repository
uses: actions/checkout@v4
Expand All @@ -34,14 +40,15 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install system dependencies
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y zip p7zip-full

- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install . pytest pytest-cov
python -m pip install . pytest pytest-cov

- name: Run tests
run: pytest -vv --cov=jsonstore --cov-report=xml --junitxml=test-results.xml
Expand Down