We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d4033a commit 178d479Copy full SHA for 178d479
.github/workflows/ci_run.yml
@@ -16,14 +16,15 @@ jobs:
16
fail-fast: false
17
matrix:
18
os: [ubuntu-latest, windows-latest, macos-latest]
19
- python-version: [ '3.11', '3.12', '3.13.x' ]
+ python-version: [ '3.11', '3.12', '3.13.0-rc.1' ]
20
runs-on: ${{ matrix.os }}
21
steps:
22
- uses: actions/checkout@v4
23
- name: Set up Python ${{ matrix.python-version }}
24
uses: actions/setup-python@v5
25
with:
26
python-version: ${{ matrix.python-version }}
27
+ cache: 'pip'
28
29
- name: Install Dependencies
30
run: |
0 commit comments