Skip to content

Update run_sherlo_sync.yml #5

Update run_sherlo_sync.yml

Update run_sherlo_sync.yml #5

Workflow file for this run

name: Sherlo Tests
on:
push:
branches: [michal/eas-build-hooks]
workflow_dispatch:
inputs:
skip_build:
description: 'Skip the build steps'
required: false
default: 'false'
type: boolean
run_sherlo_sync_tests:
description: 'Sherlo Sync upload tests'
required: true
type: boolean
default: true
run_sherlo_async_tests:
description: 'Sherlo Async upload tests'
required: true
type: boolean
default: true
run_sherlo_eas_hooks_tests:
description: 'Sherlo EAS hooks tests'
required: true
type: boolean
default: true
jobs:
update_builds:
if: ${{ !github.event.inputs.skip_build || github.event_name == 'push' }}
uses: sherlo-io/sherlo/.github/workflows/update_builds.yml@michal/eas-build-hooks
with:
profile: 'preview'
run_sherlo_sync_tests:
if: ${{ github.event.inputs.run_sherlo_sync_tests || github.event_name == 'push' }}
needs: [update_builds]
uses: sherlo-io/sherlo/.github/workflows/run_sherlo_sync.yml@michal/eas-build-hooks
with:
skip_build: true
run_sherlo_async_tests:
if: ${{ github.event.inputs.run_sherlo_async_tests || github.event_name == 'push' }}
needs: [update_builds]
uses: sherlo-io/sherlo/.github/workflows/run_sherlo_async.yml@michal/eas-build-hooks

Check failure on line 46 in .github/workflows/tests.yml

View workflow run for this annotation

GitHub Actions / Sherlo Tests

Invalid workflow file

The workflow is not valid. In .github/workflows/tests.yml (Line: 46, Col: 11): Error from called workflow sherlo-io/sherlo/.github/workflows/run_sherlo_async.yml@michal/eas-build-hooks (Line: 12, Col: 18): Unexpected value 'false'
with:
skip_build: true
run_sherlo_eas_hooks_tests:
if: ${{ github.event.inputs.run_sherlo_eas_hooks_tests || github.event_name == 'push' }}
uses: sherlo-io/sherlo/.github/workflows/run_sherlo_eas_hooks.yml@michal/eas-build-hooks