Skip to content

Commit

Permalink
Add github actions and remove travis
Browse files Browse the repository at this point in the history
  • Loading branch information
martinemde committed Dec 14, 2023
1 parent ed2df97 commit 471dbc7
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 12 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ruby.yml
@@ -0,0 +1,23 @@
name: Ruby CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [ 3.0, 3.2, head, jruby, truffleruby ]
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@ec02537da5712d66d4d50a0f33b7eb52773b5ed1
with:
bundler-cache: true
ruby-version: ${{ matrix.ruby-version }}
- run: bundle install
- run: bundle exec rake
12 changes: 0 additions & 12 deletions .travis.yml

This file was deleted.

0 comments on commit 471dbc7

Please sign in to comment.