Skip to content

Commit

Permalink
Merge pull request #24 from willnet/migrate-from-travisci-to-githubac…
Browse files Browse the repository at this point in the history
…tions

Stop using Travis CI and switch to GitHub Actions
  • Loading branch information
BobbyMcWho authored Aug 27, 2024
2 parents 3584f6a + 04b9f83 commit 41561e8
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 24 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Ruby CI

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version: ['2.3', '2.4', '2.5', '2.6', '2.7', '3.0', '3.1', '3.2', '3.3', 'head', 'jruby', 'jruby-head']
continue-on-error: ${{ matrix.ruby-version == 'jruby-head' || matrix.ruby-version == 'head' }}
env:
JRUBY_OPTS: '--debug'
steps:
- uses: actions/checkout@v4
- 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
24 changes: 0 additions & 24 deletions .travis.yml

This file was deleted.

0 comments on commit 41561e8

Please sign in to comment.