We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00c024a commit 00c4816Copy full SHA for 00c4816
.github/workflows/LibraryBuild.yml
@@ -1,9 +1,15 @@
1
+# LibraryBuild.yml
2
+# Github workflow script to test compile all examples of an Arduino library repository.
3
+#
4
+# Copyright (C) 2020 Armin Joachimsmeyer
5
+# https://github.com/ArminJo/Github-Actions
6
7
# Before being able to push to my .github\workflows directories,
8
# I had to create a new personal token with workflow enabled at https://github.com/settings/tokens
9
10
# This is the name of the workflow, visible on GitHub UI.
11
name: LibraryBuild
-on: [push]
12
+on: [push, pull_request] # see: https://help.github.com/en/actions/reference/events-that-trigger-workflows#pull-request-event-pull_request
13
14
jobs:
15
build:
0 commit comments