Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .github/workflows/checkSketches.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
name: check sketches

on: [pull_request, push]
on:
pull_request:
push:
branches:
- ch55xduino
workflow_dispatch:

permissions:
contents: read

jobs:

Expand Down Expand Up @@ -59,6 +67,9 @@ jobs:
path: compiled_hex.tar

real_hardware_test_on_self_hosted_runner:
# Only run on trusted events (push to default branch or manual dispatch) to prevent
# untrusted PR code from executing on the self-hosted runner.
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
needs: arduino-cli_compile_all
runs-on: self-hosted

Expand Down
Loading