Skip to content

Commit 3a97802

Browse files
committed
ci: update test workflow
1 parent dff41aa commit 3a97802

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

.github/workflows/test.yml

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,19 @@ jobs:
1111
runs-on: ubuntu-24.04
1212
steps:
1313
#----------------------------------------------
14-
# Build & Cache with Poetry
14+
# Check out repo
15+
#----------------------------------------------
16+
- name: "Check out repository"
17+
uses: actions/checkout@v4
18+
#----------------------------------------------
19+
# Build & Cache environment
1520
#----------------------------------------------
1621
- name: "Build & Cache with Poetry"
1722
uses: devbruce/poetry-build-action@1.0.0
1823
with:
1924
python-version: "3.12"
2025
#----------------------------------------------
21-
# Check Lint & Format on poetry environment
26+
# Check Lint & Format
2227
#----------------------------------------------
2328
- name: "Lint & Format Check"
2429
run: |
@@ -32,14 +37,19 @@ jobs:
3237
runs-on: ubuntu-24.04
3338
steps:
3439
#----------------------------------------------
35-
# Build & Cache with Poetry
40+
# Check out repo
41+
#----------------------------------------------
42+
- name: "Check out repository"
43+
uses: actions/checkout@v4
44+
#----------------------------------------------
45+
# Build & Cache environment
3646
#----------------------------------------------
3747
- name: "Build & Cache with Poetry"
3848
uses: devbruce/poetry-build-action@1.0.0
3949
with:
4050
python-version: "3.12"
4151
#----------------------------------------------
42-
# Run tests on poetry environment
52+
# Run tests
4353
#----------------------------------------------
4454
- name: "Run tests"
4555
run: |

0 commit comments

Comments
 (0)