|
7 | 7 | branches: |
8 | 8 | - "reorg" |
9 | 9 | jobs: |
10 | | - code_is_formatted: |
| 10 | + check_1_code_is_formatted: |
11 | 11 | runs-on: "ubuntu-latest" |
12 | 12 | steps: |
13 | 13 | - uses: "actions/checkout@v4" |
14 | 14 | - uses: "./.github/actions/install-python-dependencies" |
15 | 15 | - uses: "./.github/actions/install-just" |
16 | 16 | - name: "Make sure the code is properly formatted" |
17 | 17 | run: "just qual-format-check" |
18 | | - code_is_linted: |
| 18 | + check_2_code_is_linted: |
19 | 19 | runs-on: "ubuntu-latest" |
20 | 20 | steps: |
21 | 21 | - uses: "actions/checkout@v4" |
22 | 22 | - uses: "./.github/actions/install-python-dependencies" |
23 | 23 | - uses: "./.github/actions/install-just" |
24 | 24 | - name: "Make sure the code is free of lint errors" |
25 | 25 | run: "just qual-lint" |
26 | | - type_hints_are_correct: |
| 26 | + check_3_type_check_passes: |
27 | 27 | runs-on: "ubuntu-latest" |
28 | 28 | steps: |
29 | 29 | - uses: "actions/checkout@v4" |
|
32 | 32 | - name: "Run the type checker on the code" |
33 | 33 | working-directory: ./src |
34 | 34 | run: "just qual-type-check" |
35 | | - django_check_passes: |
| 35 | + check_4_django_check_passes: |
36 | 36 | runs-on: "ubuntu-latest" |
37 | 37 | steps: |
38 | 38 | - uses: "actions/checkout@v4" |
|
41 | 41 | - name: "Run the Django check utility" |
42 | 42 | working-directory: ./src |
43 | 43 | run: "just django-check" |
44 | | - unit_tests_pass: |
| 44 | + test_1_unit_tests_pass: |
45 | 45 | runs-on: "ubuntu-latest" |
46 | 46 | steps: |
47 | 47 | - uses: "actions/checkout@v4" |
|
50 | 50 | - name: "Run unit tests" |
51 | 51 | working-directory: ./src |
52 | 52 | run: "just test-unit" |
53 | | - component_tests_pass: |
| 53 | + test_2_component_tests_pass: |
54 | 54 | runs-on: "ubuntu-latest" |
55 | 55 | steps: |
56 | 56 | - uses: "actions/checkout@v4" |
|
59 | 59 | - name: "Run component tests" |
60 | 60 | working-directory: ./src |
61 | 61 | run: "just test-component" |
62 | | - integration_tests_pass: |
| 62 | + test_3_integration_tests_pass: |
63 | 63 | runs-on: "ubuntu-latest" |
64 | 64 | steps: |
65 | 65 | - uses: "actions/checkout@v4" |
|
68 | 68 | - name: "Run integration tests" |
69 | 69 | working-directory: ./src |
70 | 70 | run: "just test-integration" |
71 | | - contract_tests_pass: |
| 71 | + test_4_contract_tests_pass: |
72 | 72 | runs-on: "ubuntu-latest" |
73 | 73 | steps: |
74 | 74 | - uses: "actions/checkout@v4" |
|
77 | 77 | - name: "Run contract tests" |
78 | 78 | working-directory: ./src |
79 | 79 | run: "just test-contract" |
80 | | - e2e_tests_pass: |
| 80 | + test_5_e2e_tests_pass: |
81 | 81 | runs-on: "ubuntu-latest" |
82 | 82 | steps: |
83 | 83 | - uses: "actions/checkout@v4" |
|
86 | 86 | - name: "Run end-to-end tests" |
87 | 87 | working-directory: ./src |
88 | 88 | run: "just test-e2e" |
89 | | - dev_docs_site_builds: |
| 89 | + site_1_dev_docs_site_builds: |
90 | 90 | runs-on: "ubuntu-latest" |
91 | 91 | steps: |
92 | 92 | - uses: "actions/checkout@v4" |
|
95 | 95 | - name: "Build the developer documentation site" |
96 | 96 | working-directory: ./docs |
97 | 97 | run: "just docs-build-html" |
98 | | - test_coverage_report_builds: |
| 98 | + site_2_test_coverage_report_builds: |
99 | 99 | runs-on: "ubuntu-latest" |
100 | 100 | steps: |
101 | 101 | - uses: "actions/checkout@v4" |
|
0 commit comments