Skip to content

Commit

Permalink
ci: use make install-dev where possible
Browse files Browse the repository at this point in the history
  • Loading branch information
kod-kristoff committed Nov 21, 2024
1 parent cf7f0e5 commit ca45aa5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,4 +120,3 @@ jobs:
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}
allowed-failures: upload-coverage
4 changes: 2 additions & 2 deletions .github/workflows/scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
run: uv lock

- name: uv sync --dev
run: uv sync --dev --all-packages
run: uv sync --dev --all-packages --all-extras

- name: make test
run: make test
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:

- name: uv sync --dev --upgrade
if: hashFiles('uv.lock') != ''
run: uv sync --dev --upgrade --all-packages
run: uv sync --dev --upgrade --all-packages --all-extras

- name: make test
if: hashFiles('uv.lock') != ''
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: uv sync --all-extras --dev
run: make install-dev

- name: Run tests for coverage
run: make test-w-coverage cov_report=xml
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
python-version: ${{ env.MINIMUM_PYTHON_VERSION }}

- name: Install dependencies
run: uv sync --all-extras --dev
run: make install-dev
#----------------------------------------------
# Run tests and upload coverage
#----------------------------------------------
Expand Down

0 comments on commit ca45aa5

Please sign in to comment.