Skip to content

Build and Run Test Application Workflow #230

Build and Run Test Application Workflow

Build and Run Test Application Workflow #230

Workflow file for this run

name: Build and Run Test Application Workflow
on:
schedule:
- cron: '0 0 * * *' # (scheduled - once per day at midnight)
pull_request: # (for every push to Pull Request)
types: [opened, reopened, synchronize]
workflow_dispatch: # (to start the workflow manually)
jobs:
build_project:
name: Build Project
uses: ./.github/workflows/build_esp_app.yml
# Disable this job if you don't use it for hardware testing
test_project:
if: ${{ github.repository_owner == 'espressif' }} # Disable this job as default except if the repo is owned by Espressif
name: Test Project
uses: ./.github/workflows/test_esp_app.yml
needs: build_project