@@ -22,24 +22,24 @@ name: Python Unit Tests
2222
2323on :
2424 workflow_dispatch : # Allows the workflow to be manually triggered from the GitHub Actions tab
25- pull_request : #
26- paths : # Trigger workflow on pull requests, but
27- - " **.py" # only if Python files are changed
25+ pull_request : #
26+ paths : # Trigger workflow on pull requests, but
27+ - " **.py" # only if Python files are changed
2828 push :
29- branches : #
30- - main #
31- - next # Trigger workflow on pushes to main and next
32- paths : # branches, but only if Python files are changed
33- - " **.py" #
29+ branches : #
30+ - main #
31+ - next # Trigger workflow on pushes to main and next
32+ paths : # branches, but only if Python files are changed
33+ - " **.py" #
3434
3535env :
3636 python-version : " 3.13"
3737
3838jobs :
3939 # Job #1: Run Python unit tests
40- #
41- # This job will run on an Ubuntu runner and execute the Python
42- # tests by using a custom action located in ./.github/actions/tests/python.
40+ #
41+ # This job will run on an Ubuntu runner and execute the Python
42+ # tests by using a custom action located in ./.github/actions/tests/python.
4343 python-unit-tests :
4444 runs-on : ubuntu-latest # the runner (remote machine) will use Ubuntu OS
4545 steps :
6363 codecov-token : " ${{ secrets.CODECOV_TOKEN }}"
6464
6565 # Job #2: Notifications (Mini-capstone assignment)
66- # This job will run after the Python unit tests and
67- # is scaffolded to facilitate sending notifications based
66+ # This job will run after the Python unit tests and
67+ # is scaffolded to facilitate sending notifications based
6868 # on the test results.
6969 notifications :
7070 needs : python-unit-tests
0 commit comments