Skip to content

Added direct_pin input to show non lowpass filtered data #27

Added direct_pin input to show non lowpass filtered data

Added direct_pin input to show non lowpass filtered data #27

Workflow file for this run

# TestCompile.yml
# Github workflow script to test compile all examples of an Arduino library repository.
#
# Copyright (C) 2023 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
strategy:
matrix:
arduino-boards-fqbn:
- arduino:avr:uno
- arduino:avr:uno|TIMING_DEBUG
include:
- arduino-boards-fqbn: arduino:avr:uno|TIMING_DEBUG
build-properties:
All: -DTIMING_DEBUG
steps:
- name: Checkout
uses: actions/checkout@master
- name: Compile all examples
uses: ArminJo/arduino-test-compile@master
with:
# required-libraries: EasyButtonAtInt01,SoftI2CMaster
build-properties: ${{ toJson(matrix.build-properties) }}