Skip to content

Commit

Permalink
Work with ubuntu-latest using 24.04 by default in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyevans committed Jan 7, 2025
1 parent cd003bb commit 327cd90
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ permissions:

jobs:
tests:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:latest
Expand All @@ -22,7 +21,12 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: [ "1.9.3", "2.0.0", 2.1, 2.3, 2.4, 2.5, 2.6, 2.7, "3.0", 3.1, 3.2, 3.3, 3.4, jruby-9.2, jruby-9.3, jruby-9.4 ]
os: [ubuntu-latest]
ruby: [ "2.0.0", 2.1, 2.3, 2.4, 2.5, 2.6, 2.7, "3.0", 3.1, 3.2, 3.3, 3.4, jruby-9.3, jruby-9.4 ]
include:
- { os: ubuntu-22.04, ruby: "1.9.3" }
- { os: ubuntu-22.04, ruby: jruby-9.2 }
runs-on: ${{ matrix.os }}
name: ${{ matrix.ruby }}
env:
BUNDLE_GEMFILE: .ci.gemfile
Expand Down

0 comments on commit 327cd90

Please sign in to comment.