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@@ -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@@ -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
0 commit comments