Skip to content

Commit 4fe73ff

Browse files
authored
Merge pull request #341 from ruby/use-ruby-actions
Unify workflow files
2 parents 9b08384 + 7be2afe commit 4fe73ff

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/ubuntu.yml renamed to .github/workflows/test.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,18 @@ on: [push, pull_request]
44

55
jobs:
66
build:
7-
runs-on: ubuntu-latest
7+
runs-on: ${{ matrix.os }}
88
strategy:
99
matrix:
10+
os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ]
1011
ruby: [ 2.6, 2.5, 2.4, 2.3, 2.2, jruby, jruby-head, truffleruby, ruby-head ]
12+
exclude:
13+
- os: windows-latest
14+
ruby: truffleruby
15+
- os: windows-latest
16+
ruby: jruby-head
17+
- os: windows-latest
18+
ruby: jruby
1119
steps:
1220
- uses: actions/checkout@v2
1321
- uses: ruby/setup-ruby@v1

0 commit comments

Comments
 (0)