WatchyWatchFace/.forgejo/workflows/compile.yml
Lewis Jackson 9b84fc464a
Some checks failed
Compile / Compile (push) Failing after 38s
Fixed syntax
2023-05-30 21:10:51 +03:00

15 lines
329 B
YAML

name: Compile
run-name: ${{ github.actor }} is compiling
on: [push]
jobs:
Compile:
runs-on: ubuntu-latest
steps:
- name: Setup PlatformIO
run: |
apt update
apt -y install platformio
- run: ls
- run: cd ${{ github.workspace }}
- run: pio run
- run: echo "Done."