Adding some handy testing status images, made the name of the workflo… #15
Workflow file for this run
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
name: Arduino CI | |
on: [push, pull_request] | |
jobs: | |
testUnitTests: | |
name: ArduinoCI Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.6 | |
- run: | | |
gem install arduino_ci | |
arduino_ci.rb --skip-examples-compilation | |
# Skipping the examples; errors will throw from Adafruit NeoPixel. See: https://github.com/WesWedding/TweenDuino/issues/27 | |
# runtestExamples: | |
# name: ArduinoCI Example Tests | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - uses: ruby/setup-ruby@v1 | |
# with: | |
# ruby-version: 2.6 | |
# - run: | | |
# gem install arduino_ci | |
# arduino_ci.rb --skip-unittests | |