@@ -11,14 +11,19 @@ jobs:
11
11
runs-on : ubuntu-24.04
12
12
steps :
13
13
# ----------------------------------------------
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
15
20
# ----------------------------------------------
16
21
- name : " Build & Cache with Poetry"
17
22
uses : devbruce/poetry-build-action@1.0.0
18
23
with :
19
24
python-version : " 3.12"
20
25
# ----------------------------------------------
21
- # Check Lint & Format on poetry environment
26
+ # Check Lint & Format
22
27
# ----------------------------------------------
23
28
- name : " Lint & Format Check"
24
29
run : |
@@ -32,14 +37,19 @@ jobs:
32
37
runs-on : ubuntu-24.04
33
38
steps :
34
39
# ----------------------------------------------
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
36
46
# ----------------------------------------------
37
47
- name : " Build & Cache with Poetry"
38
48
uses : devbruce/poetry-build-action@1.0.0
39
49
with :
40
50
python-version : " 3.12"
41
51
# ----------------------------------------------
42
- # Run tests on poetry environment
52
+ # Run tests
43
53
# ----------------------------------------------
44
54
- name : " Run tests"
45
55
run : |
0 commit comments