Skip to content

Migrate CI from Travis CI to GitHub Actions #3

Migrate CI from Travis CI to GitHub Actions

Migrate CI from Travis CI to GitHub Actions #3

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
jobs:
actionlint:
runs-on: ubuntu-latest
timeout-minutes: 5
permissions:
checks: write
contents: read
pull-requests: write
steps:
- uses: actions/checkout@v4
- name: Run actionlint
uses: reviewdog/action-actionlint@fd627997c9688c2f39e13917aed23873c031b834 # v1.48.0
with:
fail_on_error: true
filter_mode: nofilter
level: error
reporter: github-pr-review
rspec:
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
ruby-version:
- '3.0'
- '3.1'
- '3.2'
- '3.3'
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run rspec
run: bundle exec rake spec
pushover:
name: pushover if failure
if: github.ref_name == github.event.repository.default_branch && failure()
needs: [actionlint, rspec]
uses: ./.github/workflows/pushover.yml