Skip to content

use various tokens

use various tokens #23

Workflow file for this run

name: Sherlo Tests
on:
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

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

View workflow run for this annotation

GitHub Actions / .github/workflows/tests.yml

Invalid workflow file

invalid value workflow reference: no version specified
secrets: inherit
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
secrets: inherit
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
secrets: inherit
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
secrets: inherit