Skip to content
Merged
Show file tree
Hide file tree
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
23 changes: 15 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ on:
- '!docs/**'

jobs:
linux:
ci_job:

strategy:
fail-fast: true
Expand All @@ -46,15 +46,18 @@ jobs:
- os: ubuntu-24.04
python-version: '3.11'
toxenv: py311
- os: ubuntu-24.04
python-version: '3.12'
toxenv: py312
- os: ubuntu-24.04
python-version: '3.13'
toxenv: py313
- os: windows-latest
- os: ubuntu-latest
python-version: '3.14'
toxenv: py314
- os: macos-latest
python-version: '3.12'
toxenv: py312
- os: windows-latest
python-version: '3.11'
toxenv: py311
allow-failure: true

env:
Expand Down Expand Up @@ -142,11 +145,15 @@ jobs:
- name: Install borgstore (no extras)
if: runner.os == 'Windows'
run: pip install -ve .
- name: Install borgstore (no extras)
if: runner.os == 'macOS'
run: pip install -ve .
- name: run tox envs (Linux)
if: runner.os == 'Linux'
run: |
tox -e all_extras
run: tox -e all_extras
- name: run tox envs (Windows)
if: runner.os == 'Windows'
run: tox -e ${{ matrix.toxenv }}

- name: run tox envs (macOS)
if: runner.os == 'macOS'
run: tox -e ${{ matrix.toxenv }}
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# tox configuration - if you change anything here, run this to verify: tox --recreate

[tox]
envlist = py{39,310,311,312,313},flake8,mypy
envlist = py{39,310,311,312,313,314},flake8,mypy

[testenv]
deps = pytest
Expand Down
Loading