Skip to content

Commit

Permalink
Add CI actions using Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
Azureblade3808 authored Oct 9, 2024
1 parent f4a09af commit 3730fbc
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,5 +95,34 @@ jobs:
run: |
pytest --cov=deferrer --cov-report=xml --cov-append
- name: Set up latest Python (latest 3.13)
uses: actions/setup-python@v5
with:
python-version: "3.13"

- name: Install dependencies (latest 3.13)
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade pytest pytest-cov
- name: Test with pytest (latest 3.13)
run: |
pytest --cov=deferrer --cov-report=xml --cov-append
- name: Set up Python 3.13.0 (3.13.0)
uses: actions/setup-python@v5
with:
python-version: "3.13.0"

- name: Install dependencies (3.13.0)
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade pytest pytest-cov
- name: Test with pytest (3.13.0)
if: ${{ ! startsWith(matrix.os, 'macos') }}
run: |
pytest --cov=deferrer --cov-report=xml --cov-append
- name: Coveralls
uses: coverallsapp/github-action@v2.3.0

0 comments on commit 3730fbc

Please sign in to comment.