Add widget functionality into the library #470
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: | |
branches: | |
- master | |
paths: | |
- "src/**" | |
- "test/**/*.cpp" | |
- '.github/workflows/arduino_ci.yml' | |
pull_request: | |
paths: | |
- 'src/**' | |
- "test/**/*.cpp" | |
- '.github/workflows/arduino_ci.yml' | |
jobs: | |
arduino-unit-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: "3.0" | |
bundler-cache: true | |
- name: Run Unit Tests | |
run: | | |
bundle install | |
bundle exec ensure_arduino_installation.rb | |
git clone https://github.com/johnrickman/LiquidCrystal_I2C.git | |
git clone https://github.com/arduino-libraries/LiquidCrystal.git | |
mv LiquidCrystal_I2C LiquidCrystal $(bundle exec arduino_library_location.rb) | |
bundle exec arduino_ci.rb --skip-examples-compilation |