Skip to content

testing workflow

testing workflow #17

Workflow file for this run

---
name: Test
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
env:
ENV: test
strategy:
matrix:
fail-fast: false

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

View workflow run for this annotation

GitHub Actions / Test

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 13, Col: 20): Unexpected value 'false'
ruby-version:
- 3.3.5
- "3.1"
- "3.0"
- 2.7.2
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@359bebbc29cbe6c87da6bc9ea3bc930432750108
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies
run: RUBYOPT='--disable-did_you_mean' bundle install
- name: Rubocop (Linter)
run: bundle exec rubocop
- name: Run tests
run: bundle exec rspec