Skip to content

Commit

Permalink
Action (ohler55#274)
Browse files Browse the repository at this point in the history
add actions
  • Loading branch information
ohler55 committed Jun 17, 2021
1 parent 8787851 commit 8dd356c
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,8 @@ jobs:
os:
- ubuntu
- macos
#- windows Tests are failing with Windows for now.
exclude:
- os: macos
ruby: head
- os: macos
ruby: '3.0'
- windows

env:
MAKE: make -j 2
runs-on: ${{ matrix.os }}-latest
continue-on-error: ${{ matrix.ruby == '3.0' || matrix.ruby == 'head'}}
name: Ruby ${{ matrix.ruby }} (${{ matrix.os }})
Expand All @@ -39,5 +32,12 @@ jobs:
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake
- name: build
run: |
cd ./ext/ox
ruby extconf.rb
make
- name: test
run: |
cd test
./tests.rb

0 comments on commit 8dd356c

Please sign in to comment.