WatchyWatchFace/.forgejo/workflows/compile.yaml

14 lines
281 B
YAML
Raw Normal View History

2023-05-30 18:46:26 +03:00
name: Compile
run-name: ${{ github.actor }} is compiling
on [push]
jobs:
Compile:
runs-on: ubuntu-latest
steps:
- run: sudo apt install platformio
- name: Compile
run: |
cd ${{ github.workspace }}
pio run
2023-05-30 18:50:15 +03:00
- run: echo "Done."