Skip to content

Upgrade ruby and migrate to Github actions #5

Upgrade ruby and migrate to Github actions

Upgrade ruby and migrate to Github actions #5

Workflow file for this run

name: 'Test'
on:
push:
branches:
- master
tags:
- v*
pull_request:
types: [opened, reopened, edited, synchronize]
jobs:
test:
strategy:
matrix:
ruby_version: [2.5, 2.6, 2.7]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: '${{ matrix.ruby_version }}'
- name: Run rspec tests
uses: ./.github/actions/rspec_tests
with:
github-token: ${{ secrets.GITHUB_TOKEN }}