Skip to content

Commit

Permalink
Run tests on Python 3.13 release candidate
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored Aug 14, 2024
1 parent cc21865 commit d79bc22
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# This workflow will install Python dependencies, run tests, and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Python Build
Expand All @@ -14,13 +14,14 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Python 3.12
uses: actions/setup-python@v4
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: 3.12
python-version: 3.13
allow-prereleases: true
- name: Dependencies
run: |
.\dependencies.bat
Expand All @@ -30,7 +31,7 @@ jobs:
- name: Build
run: |
.\build.bat
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: PBSync.windows
path: dist/PBSync.exe

0 comments on commit d79bc22

Please sign in to comment.