Skip to content

Version 4.4.0 - Fixed ESR (Equivalent Series Resistor) computing bug;… #50

Version 4.4.0 - Fixed ESR (Equivalent Series Resistor) computing bug;…

Version 4.4.0 - Fixed ESR (Equivalent Series Resistor) computing bug;… #50

Workflow file for this run

# 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