Skip to content

Migrate CI from Travis to GitHub Actions (#62) #1

Migrate CI from Travis to GitHub Actions (#62)

Migrate CI from Travis to GitHub Actions (#62) #1

Workflow file for this run

name: Test
on: [ push, pull_request ]
jobs:
test:
name: Test (Ruby ${{ matrix.ruby-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby-version: [ '2.7' ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run test
run: bundle exec rake spec