Skip to content

Daily CI

Daily CI #90

Workflow file for this run

# This workflow runs every weekday at 15:00 UTC (8AM PDT)
name: Daily CI
on:
schedule:
- cron: "00 15 * * 1-5"
permissions:
contents: read
jobs:
static-analysis:
# Don't run the cron builds on forks
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
name: Static Analysis
uses: ./.github/workflows/ci_static-analysis.yaml
tests:
# Don't run the cron builds on forks
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
name: Run Tests
uses: ./.github/workflows/ci_tests.yaml
install-tests:
# Don't run the cron builds on forks
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
name: Installation Tests
uses: ./.github/workflows/install.yaml
integ-tests:

Check failure on line 27 in .github/workflows/daily_ci.yml

View workflow run for this annotation

GitHub Actions / Daily CI

Invalid workflow file

The workflow is not valid. .github/workflows/daily_ci.yml (Line: 27, Col: 3): Error calling workflow 'aws/aws-encryption-sdk-cli/.github/workflows/python-integration.yml@a7ed9c28026694bcda3a29eade0e028b0b3e55bc'. The nested job 'integration' is requesting 'id-token: write', but is only allowed 'id-token: none'.
# Don't run the cron builds on forks
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
name: Integ Tests
uses: ./.github/workflows/python-integration.yml
examples:
# Don't run the cron builds on forks
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
name: Example Tests
uses: ./.github/workflows/python-examples.yml