mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-02 02:39:57 +00:00
20 lines
435 B
YAML
20 lines
435 B
YAML
name: Continous Integration
|
|
on: push
|
|
|
|
jobs:
|
|
main:
|
|
name: Main
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: Setup Python
|
|
uses: actions/setup-python@master
|
|
with:
|
|
python-version: 3.x
|
|
- name: Install Platform IO
|
|
run: |
|
|
python -m pip install --upgrade pip
|
|
pip install -U platformio
|
|
- name: Build
|
|
run: platformio run
|