Skip to content

Add test workflow by GitHub Actions #2

Add test workflow by GitHub Actions

Add test workflow by GitHub Actions #2

Workflow file for this run

name: Run test
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
fail-fast: false

Check failure on line 12 in .github/workflows/test.yaml

View workflow run for this annotation

GitHub Actions / Run test

Invalid workflow file

The workflow is not valid. .github/workflows/test.yaml (Line: 12, Col: 20): Unexpected value 'false'
ruby-version:
- 1.9.3
- 2.0.0
- 2.1.9
steps:
- uses: actions/checkout@v4
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake