-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
7,234 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# TestCompile.yml | ||
# Github workflow script to test compile all examples of an Arduino library repository. | ||
# | ||
# Copyright (C) 2020-2022 Armin Joachimsmeyer | ||
# https://github.com/ArminJo/Github-Actions | ||
# | ||
|
||
# This is the name of the workflow, visible on GitHub UI. | ||
name: TestCompile | ||
on: | ||
workflow_dispatch: # To run it manually | ||
description: 'manual build check' | ||
push: | ||
paths: | ||
- '**.ino' | ||
- '**.cpp' | ||
- '**.hpp' | ||
- '**.h' | ||
- '**TestCompile.yml' | ||
jobs: | ||
build: | ||
name: Test compiling examples for UNO | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@master | ||
|
||
- name: Compile all examples | ||
uses: ArminJo/arduino-test-compile@master | ||
# with: | ||
# required-libraries: EasyButtonAtInt01,SoftI2CMaster | ||
# build-properties: -DCRYSTAL_20MHZ_ASSEMBLED |
Oops, something went wrong.