Skip to content

Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows #109

Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows

Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows #109

Workflow file for this run

name: PlatformIO CI
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: pip caching
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: PlatformIO caching
uses: actions/cache@v2
with:
path: ~/.platformio
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
- name: Python setup
uses: actions/setup-python@v2
- name: PlatformIO installation
run: |
python -m pip install --upgrade pip
pip install --upgrade platformio
- name: PlatformIO run
run: pio run