Skip to content

Commit 9172a1d

Browse files
committed
! Fix workflow config
1 parent 3f23aa5 commit 9172a1d

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
env:
3232
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
3333
COVERALLS: true
34-
runs-on: ${{ matrix.os }}
34+
runs-on: ubuntu-latest
3535
steps:
3636
- name: Checkout
3737
uses: actions/checkout@v4

.github/workflows/tests.yaml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,6 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
os:
25-
- ubuntu-latest
2624
ruby:
2725
- "3.1"
2826
- "3.2"
@@ -38,14 +36,13 @@ jobs:
3836
- ruby: "3.1"
3937
gemfile: gemfiles/rails_8_0.gemfile
4038
include:
41-
- os: ubuntu-latest
42-
ruby: ruby-head
39+
- ruby: ruby-head
4340
gemfile: gemfiles/rails_8_0.gemfile
4441
allow_failures: true
4542
env:
4643
BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
4744
ALLOW_FAILURES: "${{ matrix.allow_failures }}"
48-
runs-on: ${{ matrix.os }}
45+
runs-on: ubuntu-latest
4946
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}
5047
steps:
5148
- name: Checkout

0 commit comments

Comments
 (0)