Add check_run event. #2
This file contains 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
# 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!" |