Skip to content

Commit

Permalink
ci: Update benchmarks/coverage jobs with "requirements-ci"
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-beedie committed May 6, 2024
1 parent ae66acd commit 11adbdb
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Install Python dependencies
working-directory: py-polars
run: uv pip install --compile-bytecode -r requirements-dev.txt
run: uv pip install --compile-bytecode -r requirements-dev.txt -r requirements-ci.txt

- name: Set up Rust
run: rustup show
Expand Down
17 changes: 8 additions & 9 deletions .github/workflows/docs-global.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.client_payload.sha }}
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
config-file: docs/mlc-config.json
folder-path: docs
- uses: actions/checkout@v4
with:
ref: ${{ github.event.client_payload.sha }}
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
config-file: docs/mlc-config.json
folder-path: docs

lint:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -70,8 +70,7 @@ jobs:
- name: Install Python dependencies
run: |
uv pip install -r py-polars/requirements-dev.txt
uv pip install -r docs/requirements.txt
uv pip install -r py-polars/requirements-dev.txt -r docs/requirements.txt
- name: Set up Rust
run: rustup show
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/lint-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,7 @@ jobs:
- name: Install Python dependencies
working-directory: py-polars
run: |
uv pip install -r requirements-dev.txt
uv pip install -r requirements-lint.txt
uv pip install -r requirements-dev.txt -r requirements-lint.txt
# Allow untyped calls for older Python versions
- name: Run mypy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
- name: Install Python dependencies
working-directory: py-polars
run: uv pip install --compile-bytecode -r requirements-dev.txt
run: uv pip install --compile-bytecode -r requirements-dev.txt -r requirements-ci.txt

- name: Set up Rust
run: rustup component add llvm-tools-preview
Expand Down

0 comments on commit 11adbdb

Please sign in to comment.