Skip to content

Bump stefanzweifel/git-auto-commit-action from 4 to 5 #37

Bump stefanzweifel/git-auto-commit-action from 4 to 5

Bump stefanzweifel/git-auto-commit-action from 4 to 5 #37

Workflow file for this run

name: Coverage
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 with Code Coverage
if: "contains(github.event.commits[0].message, '[ci skip]') == false"
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
ruby:
- "2.7"
- "3.2"
allow_failures:
- false
env:
ALLOW_FAILURES: "${{ matrix.allow_failures }}"
COVERAGE: true
runs-on: ${{ matrix.os }}
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Test
run: bundle exec rspec || $ALLOW_FAILURES
- name: Send to Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}