Skip to content
This repository has been archived by the owner on Jul 5, 2023. It is now read-only.

ci-master

ci-master #94

Workflow file for this run

name: ci-master
on:
push:
branches: # Trigger only on the main branch to avoid duplicate runs on PR branches
- master
schedule: # trigger once a week to ensure that CI works even after dependent gem updates
- cron: 0 0 * * 1
jobs:
rspec:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby: [2.5, 2.6, 2.7]
rails: [5.2, 6.0, 6.1, 7.0]
env:
RAILS_VERSION: ${{ matrix.rails }}
CI: true
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
# bundler-cache: true -- this messes up some dynamic constants
- run: "./spec/bin/run_spec.sh"