WatchyWatchFace/.forgejo/workflows/compile.yml
Lewis Jackson 242d26336a
Some checks reported warnings
Compile / Compile (push) Has been cancelled
OK, forgejo seems to ignore the runs-on?
2023-05-30 20:04:35 +03:00

16 lines
344 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
- name: Compile
run: |
cd ${{ github.workspace }}
pio run
- run: echo "Done."