WatchyWatchFace/.forgejo/workflows/compile.yml
Lewis Jackson 071b03095d
Some checks are pending
Compile / Compile (push) Has started running
Fucking.
2023-05-30 19:35:59 +03:00

19 lines
449 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 install software-properties-common
add-apt-repository universe
apt update
apt install platformio
- name: Compile
run: |
cd ${{ github.workspace }}
pio run
- run: echo "Done."