Skip to content

Commit

Permalink
Update workflow file to use latest setup actions
Browse files Browse the repository at this point in the history
Signed-off-by: Ajay Bhargav <ajay.bhargav@waybyte.in>
  • Loading branch information
ajaybhargav committed Feb 29, 2024
1 parent 7575f79 commit 2ca8057
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,28 +7,28 @@ jobs:
runs-on: windows-latest
steps:
- name: Install Logicrom platform
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Python 3.9
uses: actions/setup-python@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U https://github.com/platformio/platformio/archive/develop.zip
pio pkg install --global --platform symlink://.
- name: Clone Arduino build test application
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: 'waybyte/arduino-verify'
path: app/arduino-verify
- name: Build Arduino
run: |
pio run -d app/arduino-verify
- name: Clone Logicrom OpenCPU SDK build test application
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: 'waybyte/logicromsdk-verify'
path: app/logicromsdk-verify
Expand All @@ -40,7 +40,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.9]
python-version: [3.11]
example:
- "examples/arduino-blink"
- "examples/example-adc"
Expand All @@ -63,11 +63,11 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Logicrom platform and examples
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down

0 comments on commit 2ca8057

Please sign in to comment.