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 0b37f6e commit b1c3591Copy full SHA for b1c3591
‎.github/workflows/test.yml‎
@@ -1,3 +1,5 @@
1
+name: Test
2
+
3
on:
4
push:
5
branches:
@@ -9,25 +11,15 @@ on:
9
11
jobs:
10
12
test:
13
runs-on: ubuntu-latest
-
14
steps:
15
- name: Checkout repository
16
uses: actions/checkout@v4
17
- - name: Set up Python
18
- uses: actions/setup-python@v5
19
- with:
20
- python-version: '3.12'
21
22
- name: Install Poetry
23
- uses: abatilo/actions-poetry@v3
+ uses: packetcoders/action-setup-cache-python-poetry@main
24
with:
25
- poetry-version: '1.8.3'
26
27
- - name: Install dependencies
28
- run: |
29
- poetry install
30
+ python-version: 3.12
+ poetry-version: 1.8.3
+ - name: Install project
+ run: poetry install
31
- name: Run pytest
32
33
- poetry run pytest
+ run: poetry run pytest
0 commit comments