Skip to content

Bump actions/checkout from 3 to 4 #41

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #41

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- master
paths-ignore:
- 'README.md'
- 'README.md.erb'
push:
branches:
- master
paths-ignore:
- 'README.md'
- 'README.md.erb'
jobs:
unit_tests:
name: Unit Tests
if: "contains(github.event.commits[0].message, '[ci skip]') == false"
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
ruby:
- "2.2"
- "2.3"
- "2.4"
- "2.5"
- "2.6"
- "2.7"
- "3.0"
- "3.1"
- "3.2"
allow_failures:
- false
include:
- os: ubuntu-latest
ruby: ruby-head
allow_failures: true
env:
ALLOW_FAILURES: "${{ matrix.allow_failures }}"
runs-on: ${{ matrix.os }}
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Test
run: bundle exec rspec || $ALLOW_FAILURES