Skip to content

Merge pull request #3 from Shock-Link/dependabot/github_actions/actio… #3

Merge pull request #3 from Shock-Link/dependabot/github_actions/actio…

Merge pull request #3 from Shock-Link/dependabot/github_actions/actio… #3

Workflow file for this run

on:
push:
branches:
- master
pull_request:
branches:
- master
types: [opened, reopened, synchronize]
name: ci-master
jobs:
# Copied verbatim from https://docs.platformio.org/en/stable/integration/ci/github-actions.html
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: |
~/.cache/pip
~/.platformio/cache
key: ${{ runner.os }}-arch
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install PlatformIO Core
run: pip install --upgrade platformio
- name: Build PlatformIO Project
run: pio run