Skip to content

Commit

Permalink
Merge pull request #254 from xen0n/ci-ubuntu2204
Browse files Browse the repository at this point in the history
Ensure Ubuntu 22.04 for the baseline-deps CI job
  • Loading branch information
xen0n authored Dec 29, 2024
2 parents f40d19b + 0c8c487 commit 392415e
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 392415e

Please sign in to comment.