WatchyWatchFace/.forgejo/workflows/compile.yml

17 lines
351 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
2023-05-30 18:46:26 +03:00
steps:
- name: Setup PlatformIO
2023-05-30 19:34:50 +03:00
run: |
2023-05-30 19:35:59 +03:00
apt update
2023-05-30 19:37:28 +03:00
apt -y install platformio
2023-05-30 18:46:26 +03:00
- name: Compile
2023-05-30 21:09:07 +03:00
run: ls
run: cd ${{ github.workspace }}
run: pio run
2023-05-30 18:50:15 +03:00
- run: echo "Done."