1919 uses : ./.github/actions/python-environment
2020
2121 - name : Check Version(s)
22- run : poetry run version-check `poetry run python -c "from noxconfig import PROJECT_CONFIG; print(PROJECT_CONFIG.version_file)"`
22+ run : poetry run version-check `poetry run -- python -c "from noxconfig import PROJECT_CONFIG; print(PROJECT_CONFIG.version_file)"`
2323
2424 Documentation :
2525 name : Docs
3535
3636 - name : Build Documentation
3737 run : |
38- poetry run python -m nox -s docs:build
38+ poetry run -- nox -s docs:build
3939
4040 Changelog :
4141 name : Changelog Update Check
5555
5656 - name : Run changelog update check
5757 if : ${{ github.ref != 'refs/heads/main' }}
58- run : poetry run nox -s changelog:updated
58+ run : poetry run -- nox -s changelog:updated
5959
6060 build-matrix :
6161 name : Generate Build Matrix
7979 python-version : ${{ matrix.python-version }}
8080
8181 - name : Run lint
82- run : poetry run nox -s lint:code
82+ run : poetry run -- nox -s lint:code
8383
8484 - name : Upload Artifacts
8585 uses : actions/upload-artifact@v4.6.0
@@ -108,7 +108,7 @@ jobs:
108108 python-version : ${{ matrix.python-version }}
109109
110110 - name : Run type-check
111- run : poetry run nox -s lint:typing
111+ run : poetry run -- nox -s lint:typing
112112
113113 Security :
114114 name : Security Checks (Python-${{ matrix.python-version }})
@@ -128,7 +128,7 @@ jobs:
128128 python-version : ${{ matrix.python-version }}
129129
130130 - name : Run security linter
131- run : poetry run nox -s lint:security
131+ run : poetry run -- nox -s lint:security
132132
133133 - name : Upload Artifacts
134134 uses : actions/upload-artifact@v4.6.0
@@ -151,7 +151,7 @@ jobs:
151151 python-version : " 3.9"
152152
153153 - name : Run format check
154- run : poetry run nox -s project:format
154+ run : poetry run -- nox -s project:format
155155
156156 Tests :
157157 name : Unit-Tests (Python-${{ matrix.python-version }})
@@ -173,7 +173,7 @@ jobs:
173173 python-version : ${{ matrix.python-version }}
174174
175175 - name : Run Tests and Collect Coverage
176- run : poetry run nox -s test:unit -- -- --coverage
176+ run : poetry run -- nox -s test:unit -- --coverage
177177
178178 - name : Upload Artifacts
179179 uses : actions/upload-artifact@v4.6.0
0 commit comments