refactor(usb_host): Removed parent_dev_hdl and parent_port_num from Enum Driver (part1/4) #199
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is the main workflow for: | |
# | |
# - build_and_run_test_app_usb.yml | |
# | |
# It triggers reusable workflows with input arguments | |
name: Build and Run Test apps | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
# Cancel previous runs of this workflow for the same PR when a new commit is pushed | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | |
cancel-in-progress: true | |
jobs: | |
build_run: | |
uses: ./.github/workflows/build_and_run_test_app_usb.yml | |
with: | |
idf_releases: '["release-v5.1", "release-v5.2", "release-v5.3", "release-v5.4", "release-v5.5", "latest"]' | |
idf_targets: '["esp32s2", "esp32p4"]' |