mirror of
https://github.com/lora-aprs/LoRa_APRS_iGate.git
synced 2026-01-02 22:59:57 +01:00
31 lines
917 B
YAML
31 lines
917 B
YAML
name: PlatformIO CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
PlatformIO-Check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: sudo apt-get install python3-setuptools python3-wheel
|
|
- run: pip3 install platformio
|
|
- run: echo "$HOME/.local/bin" >> $GITHUB_PATH
|
|
- uses: actions/checkout@v2
|
|
- run: platformio check --fail-on-defect low --fail-on-defect medium --fail-on-defect high --skip-packages --flags "--suppress=*:*.pio\* --inline-suppr" -v
|
|
|
|
PlatformIO-Build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: sudo apt-get install python3-setuptools python3-wheel
|
|
- run: pip3 install platformio
|
|
- run: echo "$HOME/.local/bin" >> $GITHUB_PATH
|
|
- uses: actions/checkout@v2
|
|
- run: platformio run
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: firmware
|
|
path: .pio/build/*/firmware.bin
|