Skip to content

Commit

Permalink
Migrate to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
byroot committed May 7, 2021
1 parent e441305 commit 8357a69
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,25 @@
name: CI

on: [push, pull_request]

jobs:
rubies:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos]
ruby: [ '3.0', '2.7', '2.6', '2.5' ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
- name: Run test
run: rake
- name: Install gem
run: rake install

0 comments on commit 8357a69

Please sign in to comment.