-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add GitHub Actions CI workflow to replace Travis
- Loading branch information
1 parent
231e9a1
commit 7204dd6
Showing
4 changed files
with
67 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
--- | ||
name: CI | ||
on: | ||
push: | ||
branches: | ||
- master | ||
paths-ignore: | ||
- "benchmarks/**" | ||
- "bin/**" | ||
- "*.md" | ||
pull_request: | ||
branches: | ||
- master | ||
paths-ignore: | ||
- "benchmarks/**" | ||
- "bin/**" | ||
- "*.md" | ||
jobs: | ||
tests: | ||
name: Ruby ${{ matrix.ruby }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: | ||
- ubuntu-latest | ||
ruby: | ||
- 2.3 | ||
- 2.4 | ||
- 2.5 | ||
- 2.6 | ||
- 3.0 | ||
- ruby-head | ||
- jruby-9.2.13.0 | ||
- jruby-head | ||
- truffleruby-head | ||
include: | ||
- ruby: 2.1 | ||
os: ubuntu-latest | ||
coverage: false | ||
bundler: 1 | ||
- ruby: 2.2 | ||
os: ubuntu-latest | ||
coverage: false | ||
bundler: 1 | ||
- ruby: 2.7 | ||
os: ubuntu-latest | ||
coverage: true | ||
bundler: latest | ||
env: | ||
COVERAGE: ${{ matrix.coverage }} | ||
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} | ||
continue-on-error: ${{ endsWith(matrix.ruby, 'head') }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Ruby | ||
uses: ruby/setup-ruby@v1 | ||
with: | ||
ruby-version: ${{ matrix.ruby }} | ||
bundler: ${{ matrix.bundler }} | ||
- name: Install dependencies | ||
run: bundle install --jobs 4 --retry 3 | ||
- name: Run tests | ||
run: bundle exec rake ci |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters