Skip to content

Add rspec-specific GitHub workflow #634

Add rspec-specific GitHub workflow

Add rspec-specific GitHub workflow #634

Workflow file for this run

name: RSpec
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
rspec-fast:
name: RSpec (Fast)
uses: ./.github/workflows/rspec-shared.yml

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

View workflow run for this annotation

GitHub Actions / RSpec

Invalid workflow file

The workflow is not valid. In .github/workflows/rspec.yml (Line: 13, Col: 11): Error from called workflow shakacode/control-plane-flow/.github/workflows/rspec-shared.yml@9c9e73cb9a14eaee0e2d98e5048595d619a8edaa (Line: 47, Col: 14): Unexpected symbol: '"--tag'. Located at position 27 within expression: inputs.test-tag && format("--tag {0}", inputs.test-tag))
with:
os-version: ubuntu-latest
ruby-version: "3.2"
test-tag: ~slow
secrets: inherit
rspec-slow:
name: RSpec (Slow)
uses: ./.github/workflows/rspec-shared.yml
if: github.event_name == 'workflow_dispatch'
with:
os-version: ubuntu-latest
ruby-version: "3.2"
test-tag: slow
secrets: inherit