WatchyWatchFace/.forgejo/workflows/compile.yml

14 lines
277 B
YAML
Raw Normal View History

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