Skip to content

workflow update

workflow update #16

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
ruby-version: ['3.3.5', '3.1', '3.0', '2.7.2']
steps:
- uses: actions/checkout@v4

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

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 17
- uses: ruby/setup-ruby@v1
- 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