fix: Race condition fix for issue #257 #90
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 | |
pull_request: | |
branches: | |
- master | |
jobs: | |
runTest: | |
runs-on: ubuntu-latest | |
steps: | |
# Step 1: Checkout the repository | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
# Step 2: Set up Ruby | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 2.6 | |
# Step 3: Install Arduino CI gem | |
- name: Install Arduino CI | |
run: | | |
gem install arduino_ci -v 1.5.0 | |
# Step 4: Run Arduino CI tests | |
- name: Run Arduino CI Tests | |
run: | | |
arduino_ci.rb |