Skip to content

Commit 1b0b0ab

Browse files
committed
Tweak GitHub Actions
* Add Ruby 3.0 and ruby-head tasks * Remove Ruby 2.4 task Signed-off-by: Hiroshi Hatake <[email protected]>
1 parent 8916e47 commit 1b0b0ab

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/linux.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,19 @@ on:
55
jobs:
66
build:
77
runs-on: ${{ matrix.os }}
8+
continue-on-error: ${{ matrix.experimental }}
89
strategy:
910
fail-fast: false
1011
matrix:
11-
ruby: [ '2.4', '2.5', '2.6', '2.7' ]
12+
ruby: [ '2.5', '2.6', '2.7', '3.0' ]
1213
os:
1314
- ubuntu-latest
15+
experimental: [false]
16+
include:
17+
- ruby: head
18+
os: ubuntu-latest
19+
experimental: true
20+
1421
name: Ruby ${{ matrix.ruby }} unit testing on ${{ matrix.os }}
1522
steps:
1623
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)