Skip to content

Commit

Permalink
Initial version
Browse files Browse the repository at this point in the history
  • Loading branch information
ArminJo committed May 29, 2023
1 parent f734d86 commit 3c67ab0
Show file tree
Hide file tree
Showing 28 changed files with 7,234 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/TestCompile.yml
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
Loading

0 comments on commit 3c67ab0

Please sign in to comment.