Skip to content

Merge pull request #66 from choria-plugins/ci-update #6

Merge pull request #66 from choria-plugins/ci-update

Merge pull request #66 from choria-plugins/ci-update #6

Workflow file for this run

---
# Managed by modulesync - DO NOT EDIT
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
name: Continuous Integration
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
unit:

Check failure on line 18 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / Continuous Integration

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 18, Col: 3): The workflow must contain at least one job with no dependencies.
runs-on: ubuntu-latest
needs: rubocop
strategy:
matrix:
ruby:
- "2.6"
- "2.7"
- "3.0"
- "3.1"
name: Ruby ${{ matrix.ruby }}
steps:
- uses: actions/checkout@v3
- name: Setup ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run tests
run: bundle exec rake test