Skip to content

[test-ci]

[test-ci] #398

Workflow file for this run

name: Test (Linter + Typecheck + Specs)
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby31:
ruby_version: '3.1'

Check failure on line 10 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / Test (Linter + Typecheck + Specs)

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 10, Col: 11): A mapping was not expected .github/workflows/build.yml (Line: 13, Col: 11): A mapping was not expected
env: gemfiles/ruby31.gemfile
ruby32:
ruby_version: '3.2'
env: gemfiles/ruby32.gemfile
ruby33:
ruby_version: '3.3'
env: gemfiles/ruby33.gemfile
env:
BUNDLE_GEMFILE: ${{ matrix.env }}
steps:
- uses: actions/checkout@v4
- uses: supercharge/[email protected]
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
bundler-cache: true
- name: (Linter) Rubocop
run: bundle exec rake rubocop
- name: (TypeCheck) Steep
run: bundle exec steep check --jobs 10
- name: (Test) RSpec
run: bundle exec rake rspec