|
33 | 33 | test:
|
34 | 34 | runs-on: ubuntu-latest
|
35 | 35 | steps:
|
36 |
| - #------------------------------------ |
37 |
| - # Check out repo and set up python |
38 |
| - #------------------------------------ |
| 36 | + #-------------------------------------# |
| 37 | + # Check out repo and set up Python # |
| 38 | + #-------------------------------------# |
39 | 39 | - name: Check out the repository
|
40 | 40 | uses: actions/checkout@v3
|
41 | 41 | - name: "Setup Python, Poetry and Dependencies"
|
|
44 | 44 | python-version: 3.8
|
45 | 45 | poetry-version: 1.2.2
|
46 | 46 |
|
47 |
| - #------------------------------------ |
48 |
| - # Run Your Actual Job |
49 |
| - #------------------------------------ |
| 47 | + #------------------------# |
| 48 | + # Run your actual job # |
| 49 | + #------------------------# |
50 | 50 | - name: Run tests
|
51 | 51 | run: |
|
52 | 52 | poetry run pytest
|
|
73 | 73 | poetry-version: [1.2.2]
|
74 | 74 | runs-on: ubuntu-latest
|
75 | 75 | steps:
|
76 |
| - #------------------------------------ |
77 |
| - # Check out repo and set up python |
78 |
| - #------------------------------------ |
| 76 | + #------------------------------------# |
| 77 | + # Check out repo and set up Python # |
| 78 | + #------------------------------------# |
79 | 79 | - name: Check out the repository
|
80 | 80 | uses: actions/checkout@v3
|
81 | 81 | - name: "Setup Python, Poetry and Dependencies"
|
|
84 | 84 | python-version: ${{matrix.python-version}}
|
85 | 85 | poetry-version: ${{matrix.poetry-version}}
|
86 | 86 |
|
87 |
| - #------------------------------------ |
88 |
| - # Run Your Actual Job |
89 |
| - #------------------------------------ |
| 87 | + #-----------------------# |
| 88 | + # Run your actual job # |
| 89 | + #-----------------------# |
90 | 90 | - name: Run tests
|
91 | 91 | run: |
|
92 | 92 | poetry run pytest
|
|
0 commit comments