Skip to content

Commit

Permalink
Merge pull request #47 from petergoldstein/feature/migrate_to_github_…
Browse files Browse the repository at this point in the history
…actions

Migrate to GitHub Actions as Travis CI.org is no longer active
  • Loading branch information
andreasknoepfle committed Jul 10, 2023
2 parents d820ab1 + f04eb50 commit 4b47ebd
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 7 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CI

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
ruby-version:
- head
- '3.2'
- '3.1'
- '3.0'
- '2.7'
- '2.6'
- '2.5'
- '2.4'
- '2.3'
steps:
- uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true # 'bundle install' and cache
- name: Run tests
run: bundle exec rake
7 changes: 0 additions & 7 deletions .travis.yml

This file was deleted.

0 comments on commit 4b47ebd

Please sign in to comment.