Skip to content

Commit

Permalink
Update GitHub Actions file
Browse files Browse the repository at this point in the history
  • Loading branch information
mairas committed Jun 1, 2024
1 parent f41631c commit 8868449
Showing 1 changed file with 11 additions and 6 deletions.
17 changes: 11 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -26,13 +25,19 @@ jobs:
target_device:
- esp32dev
steps:
- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v1
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install platformio
pip install --upgrade platformio
- name: Run PlatformIO
run: ci/run-ci.sh
env:
Expand Down

0 comments on commit 8868449

Please sign in to comment.