Skip to content

Commit

Permalink
ci: make sure the baseline deps job is running on ubuntu-22.04
Browse files Browse the repository at this point in the history
  • Loading branch information
xen0n committed Dec 29, 2024
1 parent f40d19b commit 0c8c487
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:
jobs:
lint:
name: "lint & typecheck & test (Python ${{ matrix.python }}${{ matrix.baseline && ', baseline deps' || '' }}${{ matrix.experimental && ', experimental' || '' }})"
runs-on: ubuntu-latest
runs-on: ${{ matrix.runs_on }}
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: true
Expand All @@ -34,13 +34,16 @@ jobs:
- '3.12'
experimental: [false]
baseline: [false]
runs_on: ['ubuntu-latest']
include:
- python: '3.13'
baseline: false
experimental: true
runs_on: ubuntu-latest
- python: '3.10'
baseline: true
experimental: false
runs_on: ubuntu-22.04
steps:
- uses: actions/checkout@v4

Expand Down

0 comments on commit 0c8c487

Please sign in to comment.