Skip to content

Remove .ruby-version #138

Remove .ruby-version

Remove .ruby-version #138

Workflow file for this run

name: Ruby Test
on: push
jobs:
test:
name: Ruby ${{ matrix.ruby }} (${{ matrix.gemfile }})
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile
BUNDLE_JOBS: 4
BUNDLE_RETRY: 3
strategy:
fail-fast: false
matrix:
ruby: ["3.0", "3.1", "3.2", "3.3"]
gemfile: [ "rails_6_1", "rails_7_0", "rails_7_2"]
exclude:
- ruby: "3.0"
gemfile: "rails_7_2"
experimental: [false]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:

Check failure on line 29 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / Ruby Test

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 29, Col: 14): Unexpected value '' .github/workflows/test.yml (Line: 30, Col: 9): Unexpected value 'ruby-version'
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
run: bin/test
- name: Run standardrb
run: bundle exec standardrb