Skip to content

Commit 327cd90

Browse files
committed
Work with ubuntu-latest using 24.04 by default in CI
1 parent cd003bb commit 327cd90

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ permissions:
1111

1212
jobs:
1313
tests:
14-
runs-on: ubuntu-latest
1514
services:
1615
postgres:
1716
image: postgres:latest
@@ -22,7 +21,12 @@ jobs:
2221
strategy:
2322
fail-fast: false
2423
matrix:
25-
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 ]
24+
os: [ubuntu-latest]
25+
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 ]
26+
include:
27+
- { os: ubuntu-22.04, ruby: "1.9.3" }
28+
- { os: ubuntu-22.04, ruby: jruby-9.2 }
29+
runs-on: ${{ matrix.os }}
2630
name: ${{ matrix.ruby }}
2731
env:
2832
BUNDLE_GEMFILE: .ci.gemfile

0 commit comments

Comments
 (0)