Skip to content

foobar

foobar #382

Workflow file for this run

name: build
on:
push:
pull_request:
schedule:
- cron: "30 14 * * *"
jobs:
irb:

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

View workflow run for this annotation

GitHub Actions / build

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 10, Col: 3): The workflow must contain at least one job with no dependencies.
needs: ruby-versions
name: rake test head
runs-on: ubuntu-latest
env:
WITH_LATEST_RELINE: false
timeout-minutes: 30
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: head
bundler-cache: true
- name: Run tests
run: bundle exec rake test
- name: Run tests in isolation
run: bundle exec rake test_in_isolation