WatchyWatchFace/.forgejo/workflows/compile.yml
Lewis Jackson 737c367b9c
Some checks failed
Compile / Compile (push) Failing after 6s
YML syntax fix
2023-05-30 19:34:50 +03:00

17 lines
379 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
add-apt-repository universe
apt install platformio
- name: Compile
run: |
cd ${{ github.workspace }}
pio run
- run: echo "Done."