Skip to content

Commit

Permalink
Added Windows and macOS.
Browse files Browse the repository at this point in the history
  • Loading branch information
hsbt committed Aug 9, 2019
1 parent cfc7e48 commit 8017d98
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: ubuntu

on: [push]

jobs:
build:
runs-on: macos-latest
strategy:
matrix:
ruby: [ '2.6.x', '2.5.x', '2.4.x', '2.3.x' ]
steps:
- uses: actions/checkout@master
- name: Set up Ruby
uses: actions/setup-ruby@v1
with:
version: ${{ matrix.ruby }}
- name: Build and test with Rake
run: |
gem install minitest
ruby -Ilib exe/rake
20 changes: 20 additions & 0 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: ubuntu

on: [push]

jobs:
build:
runs-on: windows-latest
strategy:
matrix:
ruby: [ '2.6.x', '2.5.x', '2.4.x', '2.3.x' ]
steps:
- uses: actions/checkout@master
- name: Set up Ruby
uses: actions/setup-ruby@v1
with:
version: ${{ matrix.ruby }}
- name: Build and test with Rake
run: |
gem install minitest
ruby -Ilib exe/rake

0 comments on commit 8017d98

Please sign in to comment.