@@ -108,11 +108,6 @@ jobs:
108108 run : cargo build --release
109109 - name : Run creation
110110 run : ./scripts/ci_run.sh ${{ matrix.project_type }} 1
111- - name : Install Dependencies
112- working-directory : ${{ env.WORKING_DIR }}
113- run : |
114- uv lock
115- uv sync --frozen
116111 - name : MyPy
117112 working-directory : ${{ env.WORKING_DIR }}
118113 run : uv run mypy .
@@ -150,15 +145,9 @@ jobs:
150145 - name : Run creation
151146 run : ./scripts/ci_run.sh ${{ matrix.project_type }} 1
152147 shell : bash
153- - name : Install Dependencies
154- working-directory : ${{ env.WORKING_DIR }}
155- run : |
156- uv lock
157- uv sync --frozen
158148 - name : Pre-commit check
159149 working-directory : ${{ env.WORKING_DIR }}
160150 run : |
161- uv run pre-commit install
162151 git add .
163152 uv run pre-commit run --all-files
164153 - name : Test with pytest
@@ -191,9 +180,6 @@ jobs:
191180 run : cargo build --release
192181 - name : Run creation
193182 run : ./scripts/ci_run.sh ${{ matrix.project_type }} 2
194- - name : Install Dependencies
195- working-directory : ${{ env.WORKING_DIR }}
196- run : poetry install
197183 - name : MyPy
198184 working-directory : ${{ env.WORKING_DIR }}
199185 run : poetry run mypy .
@@ -231,13 +217,9 @@ jobs:
231217 - name : Run creation
232218 run : ./scripts/ci_run.sh ${{ matrix.project_type }} 2
233219 shell : bash
234- - name : Install Dependencies
235- working-directory : ${{ env.WORKING_DIR }}
236- run : poetry install
237220 - name : Pre-commit check
238221 working-directory : ${{ env.WORKING_DIR }}
239222 run : |
240- poetry run pre-commit install
241223 git add .
242224 poetry run pre-commit run --all-files
243225 - name : Test with pytest
@@ -273,12 +255,6 @@ jobs:
273255 run : cargo build --release
274256 - name : Run creation
275257 run : ./scripts/ci_run.sh ${{ matrix.project_type }} 3
276- - name : Install Dependencies
277- working-directory : ${{ env.WORKING_DIR }}
278- run : |
279- uv lock
280- uv sync --frozen
281- uv run maturin build
282258 - name : MyPy
283259 working-directory : ${{ env.WORKING_DIR }}
284260 run : just mypy
@@ -325,13 +301,10 @@ jobs:
325301 - name : Install Dependencies
326302 working-directory : ${{ env.WORKING_DIR }}
327303 run : |
328- uv lock
329- uv sync --frozen
330304 uv run maturin build
331305 - name : Pre-commit check
332306 working-directory : ${{ env.WORKING_DIR }}
333307 run : |
334- uv run pre-commit install
335308 git add .
336309 uv run pre-commit run --all-files
337310 - name : Test with pytest
@@ -358,11 +331,6 @@ jobs:
358331 - name : Run creation
359332 run : |
360333 ./scripts/ci_run.sh ${{ matrix.project_type }} 4
361- - name : Install Dependencies
362- working-directory : ${{ env.WORKING_DIR }}
363- run : |
364- python -m pip install -U pip
365- python -m pip install -r requirements-dev.txt
366334 - name : MyPy
367335 working-directory : ${{ env.WORKING_DIR }}
368336 run : mypy .
@@ -394,15 +362,9 @@ jobs:
394362 - name : Run creation
395363 run : ./scripts/ci_run.sh ${{ matrix.project_type }} 4
396364 shell : bash
397- - name : Install Dependencies
398- working-directory : ${{ env.WORKING_DIR }}
399- run : |
400- python -m pip install -U pip
401- python -m pip install -r requirements-dev.txt
402365 - name : Pre-commit check
403366 working-directory : ${{ env.WORKING_DIR }}
404367 run : |
405- pre-commit install
406368 git add .
407369 pre-commit run --all-files
408370 - name : Test with pytest
@@ -472,7 +434,6 @@ jobs:
472434 - name : Pre-commit check
473435 working-directory : ${{ env.WORKING_DIR }}
474436 run : |
475- pixi run -e dev pre-commit install
476437 git add .
477438 pixi run -e dev pre-commit run --all-files
478439 - name : Test with pytest
0 commit comments