Skip to content
Open
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
6 changes: 4 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ jobs:
strategy:
matrix:
include:
- python-version: '3.7'
- python-version: '3.8'
- python-version: '3.9'
- python-version: '3.10'
- python-version: '3.11'
- python-version: '3.12'
- python-version: '3.13'

steps:
- uses: actions/checkout@v2
Expand All @@ -19,7 +21,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Update pip
run: python -m pip install -U coverage flake8 pip pytest pytest-coverage pytest-benchmark
run: python -m pip install -U coverage flake8 pip pytest pytest-coverage pytest-benchmark setuptools

- name: Flake8
run: flake8 sqlitedict.py tests
Expand Down