#167 Update condition to check if cursor is at the top and bottom. #81
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: [pull_request] | |
jobs: | |
arduino-unit-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- 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 | |
mv LiquidCrystal_I2C $(bundle exec arduino_library_location.rb) | |
bundle exec arduino_ci.rb --skip-examples-compilation |