Skip to content

Commit

Permalink
Add CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
eregon committed Feb 21, 2023
1 parent f0b8519 commit b85a644
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 73 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ ubuntu, macos, windows ]
ruby: [ 2.6, jruby, truffleruby ]
exclude:
- { os: windows, ruby: truffleruby }
runs-on: ${{ matrix.os }}-latest
env:
CHILDPROCESS_UNSET: should-be-unset
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- run: bundle exec rake spec
37 changes: 0 additions & 37 deletions .travis.yml

This file was deleted.

36 changes: 0 additions & 36 deletions appveyor.yml

This file was deleted.

0 comments on commit b85a644

Please sign in to comment.