Skip to content

ci: Set up Python-focused testing infra #1

ci: Set up Python-focused testing infra

ci: Set up Python-focused testing infra #1

Workflow file for this run

---
name: ⏳
on:
pull_request:
paths: # only changes to this workflow itself trigger PR testing
- .github/workflows/scheduled-runs.yml
schedule:
- cron: 3 5 * * * # run daily at 5:03 UTC
workflow_dispatch: # manual trigger
run-name: >-
🌃
Nightly run of
${{
github.event.pull_request.number && 'PR' || ''
}}${{
!github.event.pull_request.number && 'Commit' || ''
}}
${{ github.event.pull_request.number || github.sha }}
triggered by: ${{ github.event_name }} of ${{
github.ref
}} ${{
github.ref_type
}}
(workflow run ID: ${{
github.run_id
}}; number: ${{
github.run_number
}}; attempt: ${{
github.run_attempt
}})
jobs:
main-ci-cd-pipeline:
name: 🧪 Main CI/CD pipeline
uses: ./.github/workflows/ci-cd.yml

Check failure on line 38 in .github/workflows/scheduled-runs.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/scheduled-runs.yml

Invalid workflow file

error parsing called workflow ".github/workflows/scheduled-runs.yml" -> "./.github/workflows/ci-cd.yml" : every step must define a `uses` or `run` key
secrets: inherit
...