Skip to content

Merge pull request #908 from G-Rath/new-inject-into-file-helper #317

Merge pull request #908 from G-Rath/new-inject-into-file-helper

Merge pull request #908 from G-Rath/new-inject-into-file-helper #317

Workflow file for this run

name: Run tests
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
ruby: ['2.6', '2.7', '3.0', '3.1', '3.2', '3.3', '3.4','head']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler: ${{ (matrix.ruby < '3' && '2.4.21') || 'latest' }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- run: bundle exec thor spec