Skip to content

Add check_run event. #2

Add check_run event.

Add check_run event. #2

Workflow file for this run

# Name of your workflow
name: Aruduino Build on push workflow
# Define the trigger events.
on: [push, check_run]
# Jobs run in parallel be default, each runs steps in sequence
jobs:
# Jobs to print something out
say-hello:
runs-on: ubuntu-latest
steps:
- run: echo "Hello,GitHub Actions!"