We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7421c67 commit 747fb4bCopy full SHA for 747fb4b
1 file changed
.github/workflows/ci.yml
@@ -10,18 +10,18 @@ jobs:
10
test:
11
runs-on: ubuntu-latest
12
steps:
13
- - uses: actions/checkout@v6.0.2
14
-
15
- - name: Set up Python 3.14
16
- uses: actions/setup-python@v6
17
- with:
18
- python-version: "3.14"
19
- cache: "poetry"
+ - uses: actions/checkout@v4
20
21
- name: Install Poetry
22
run: |
23
curl -sSL https://install.python-poetry.org | python3 -
24
- export PATH="$HOME/.local/bin:$PATH"
+ echo "$HOME/.local/bin" >> $GITHUB_PATH
+
+ - name: Set up Python 3.12
+ uses: actions/setup-python@v5
+ with:
+ python-version: "3.12"
+ cache: "poetry"
25
26
- name: Install dependencies
27
run: poetry install
@@ -33,3 +33,4 @@ jobs:
33
34
- name: Run tests with coverage
35
run: poetry run pytest --cov=src --cov-report=xml
36
0 commit comments