Enhanced character set #39 #55
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
# Test Arduino Library | |
name: Build Test | |
# The workflow will run on every push and pull request to the repository | |
on: | |
- push | |
- pull_request | |
jobs: | |
compile-sketch: | |
runs-on: ubuntu-latest | |
# Boards to test | |
strategy: | |
matrix: | |
fqbn: | |
- arduino:avr:uno | |
steps: | |
# This step makes the contents of the repository available to the workflow | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
# For more information: https://github.com/arduino/compile-sketches#readme | |
- name: Compile example sketches | |
uses: arduino/compile-sketches@v1 | |
with: | |
# Board type to test | |
fqbn: ${{ matrix.fqbn }} | |
# The default is to compile for the Arduino Uno board. If you want to compile for other boards, use the `fqbn` input. | |
sketch-paths: | | |
# Search all files under the examples path in the repository for sketches and compile them. | |
# This is formatted as a YAML list, which makes it possible to have multiple sketch paths if needed. | |
- ./examples | |