Skip to content

Commit fa6777c

Browse files
committed
* Update CI config to remove useless os matrix
1 parent 8b04b52 commit fa6777c

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

.github/workflows/coverage.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,14 @@ jobs:
2121
strategy:
2222
fail-fast: false
2323
matrix:
24-
os:
25-
- ubuntu
2624
ruby:
2725
- "3.3"
2826
gemfile:
2927
- gemfiles/rspec_3_13.gemfile
3028
env:
3129
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
3230
COVERALLS: true
33-
runs-on: ${{ matrix.os }}-latest
31+
runs-on: ubuntu-latest
3432
steps:
3533
- name: Checkout
3634
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
2624
ruby:
2725
- "3.0"
2826
- "3.1"
@@ -42,14 +40,13 @@ jobs:
4240
allow_failures:
4341
- false
4442
include:
45-
- os: ubuntu
46-
ruby: ruby-head
43+
- ruby: ruby-head
4744
gemfile: gemfiles/rspec_3_13.gemfile
4845
allow_failures: true
4946
env:
5047
BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
5148
ALLOW_FAILURES: "${{ matrix.allow_failures }}"
52-
runs-on: ${{ matrix.os }}-latest
49+
runs-on: ubuntu-latest
5350
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}
5451
steps:
5552
- name: Checkout

0 commit comments

Comments
 (0)