Skip to content

Nightly

Nightly #715

Workflow file for this run

name: Nightly
on:
schedule:
- cron: "0 06 * * *"
workflow_dispatch:
inputs:
job:
description: "Select the job to run in contract.yaml"
required: true
default: "all"
type: choice
options:
- all
- bats-tests
- vscode-ui-tests
jobs:
agent:
uses: ./.github/workflows/agent.yaml
build:
uses: ./.github/workflows/build.yaml
package:
needs: build
uses: ./.github/workflows/package.yaml
contract-deps:
secrets: inherit
uses: ./.github/workflows/contract-deps.yaml
nightly:
needs:
- build
- contract-deps
- package
secrets: inherit
uses: ./.github/workflows/contract.yaml

Check failure on line 33 in .github/workflows/nightly.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/nightly.yaml

Invalid workflow file

error parsing called workflow ".github/workflows/nightly.yaml" -> "./.github/workflows/contract.yaml" (source branch with sha:08ef9d0d7436835b3445e9ba2da874330644581e) : No steps defined in `steps` and no workflow called in `uses` for the following jobs: get-connnect-ip
with:
job: ${{ github.event.inputs.job || 'all' }}
cleanup:
needs: nightly
secrets: inherit
uses: ./.github/workflows/cleanup.yaml
# Extensions
vscode:
uses: ./.github/workflows/vscode.yaml