Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ on:
jobs:
dist:
name: Create dist
runs-on: ubuntu-latest
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
Expand All @@ -37,7 +37,7 @@ jobs:
id-token: write # for trusted publishing
attestations: write # for trusted publishing
contents: read
runs-on: ubuntu-latest
runs-on: ubuntu-slim
if: github.event_name == 'release' && github.event.action == 'published'

steps:
Expand Down
23 changes: 14 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ env:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
Expand All @@ -44,14 +44,19 @@ jobs:
strategy:
fail-fast: false
matrix:
environment:
- tests-py311
- tests-py314
- tests-numpy1
- tests-backends
- tests-backends-py311
- tests-nogil
runs-on: [ubuntu-latest]
include:
- environment: tests-py311
runs-on: ubuntu-latest
- environment: tests-py314
runs-on: ubuntu-slim
- environment: tests-numpy1
runs-on: ubuntu-slim
- environment: tests-nogil
runs-on: ubuntu-slim
- environment: tests-backends
runs-on: ubuntu-latest
- environment: tests-backends-py311
runs-on: ubuntu-latest

environment:
name: ci-checks
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ concurrency:
jobs:
docs-build:
name: Build
runs-on: ubuntu-latest
runs-on: ubuntu-slim

permissions:
contents: read
Expand Down Expand Up @@ -40,7 +40,7 @@ jobs:
name: Deploy
if: ${{ github.event.workflow_run.event == 'push' }}
needs: docs-build
runs-on: ubuntu-latest
runs-on: ubuntu-slim

permissions:
contents: write # needed for the deploy step
Expand Down