Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Update Ruby #11

Merged
merged 1 commit into from
Feb 2, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/linux-test.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Testing on Ubuntu
name: Test on Ubuntu

on:
push:
Expand All @@ -13,15 +13,15 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ['3.0', '2.7', '2.6']
ruby: ['3.1', '3.0', '2.7', '2.6']
os: [ubuntu-latest]
experimental: [false]
include:
- ruby: head
os: ubuntu-latest
experimental: true

name: Unit testing with Ruby ${{ matrix.ruby }} on ${{ matrix.os }}
name: Ruby ${{ matrix.ruby }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/macos-test.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Testing on macOS
name: Test on macOS

on:
push:
Expand All @@ -12,10 +12,10 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ['3.0', '2.7', '2.6']
ruby: ['3.1', '3.0', '2.7', '2.6']
os: [macos-latest]

name: Unit testing with Ruby ${{ matrix.ruby }} on ${{ matrix.os }}
name: Ruby ${{ matrix.ruby }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/windows-test.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Testing on Windows
name: Test on Windows

on:
push:
Expand All @@ -12,10 +12,10 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ['3.0', '2.7', '2.6']
ruby: ['3.1', '3.0', '2.7', '2.6']
os:
- windows-latest
name: Unit testing with Ruby ${{ matrix.ruby }} on ${{ matrix.os }}
name: Ruby ${{ matrix.ruby }} on ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
Expand Down