Skip to content

Commit

Permalink
^ Update ruby versions in CI config
Browse files Browse the repository at this point in the history
  • Loading branch information
PikachuEXE committed Dec 18, 2024
1 parent d647315 commit dda6604
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,16 @@ jobs:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
ruby:
- "2.7"
- "3.2"
- "3.3"
allow_failures:
- false
env:
ALLOW_FAILURES: "${{ matrix.allow_failures }}"
COVERAGE: true
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}
steps:
- name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/readme.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
ruby-version: "3.3"
bundler-cache: true
- name: generate readme
run: script/generate_readme
Expand Down
8 changes: 3 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-latest
ruby:
- "2.2"
- "2.3"
Expand All @@ -33,15 +31,15 @@ jobs:
- "3.0"
- "3.1"
- "3.2"
- "3.3"
allow_failures:
- false
include:
- os: ubuntu-latest
ruby: ruby-head
- ruby: ruby-head
allow_failures: true
env:
ALLOW_FAILURES: "${{ matrix.allow_failures }}"
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}
steps:
- name: Checkout
Expand Down

0 comments on commit dda6604

Please sign in to comment.