Skip to content

Commit

Permalink
Merge pull request #561 from sparklemotion/flavorjones/migrate-ci-to-…
Browse files Browse the repository at this point in the history
…github-actions

ci: replace travis with github actions
  • Loading branch information
flavorjones committed Jan 23, 2021
2 parents df0c772 + 444fcd8 commit b7c6af7
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 26 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: "ci"

on:
push:
branches: [ master ]
pull_request:
branches: [ "*" ]

jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version: ["2.3", "2.4", "2.5", "2.6", "2.7", "3.0", "jruby"]

steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run tests
run: bundle exec rake
26 changes: 0 additions & 26 deletions .travis.yml

This file was deleted.

0 comments on commit b7c6af7

Please sign in to comment.