Skip to content

Commit

Permalink
* Update CI config to remove useless os matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
PikachuEXE committed Dec 18, 2024
1 parent 439e925 commit e76e067
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ jobs:
strategy:
fail-fast: false
matrix:
os:
- ubuntu
ruby:
- "3.3"
gemfile:
Expand All @@ -33,7 +31,7 @@ jobs:
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
COVERALLS: true
runs-on: ${{ matrix.os }}-latest
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ jobs:
strategy:
fail-fast: false
matrix:
os:
- ubuntu
ruby:
- "3.1"
- "3.2"
Expand All @@ -38,14 +36,13 @@ jobs:
- ruby: "3.1"
gemfile: gemfiles/rails_8_0.gemfile
include:
- os: ubuntu
ruby: ruby-head
- ruby: ruby-head
gemfile: gemfiles/rails_8_0.gemfile
allow_failures: true
env:
BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
ALLOW_FAILURES: "${{ matrix.allow_failures }}"
runs-on: ${{ matrix.os }}-latest
runs-on: ubuntu-latest
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}
steps:
- name: Checkout
Expand Down

0 comments on commit e76e067

Please sign in to comment.