Skip to content

Commit

Permalink
Merge pull request #341 from ruby/use-ruby-actions
Browse files Browse the repository at this point in the history
Unify workflow files
  • Loading branch information
hsbt committed Mar 6, 2020
2 parents 9b08384 + 7be2afe commit 4fe73ff
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ubuntu.yml → .github/workflows/test.yml
Expand Up @@ -4,10 +4,18 @@ on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ 'ubuntu-latest', 'macos-latest', 'windows-latest' ]
ruby: [ 2.6, 2.5, 2.4, 2.3, 2.2, jruby, jruby-head, truffleruby, ruby-head ]
exclude:
- os: windows-latest
ruby: truffleruby
- os: windows-latest
ruby: jruby-head
- os: windows-latest
ruby: jruby
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
Expand Down

0 comments on commit 4fe73ff

Please sign in to comment.