WatchyWatchFace/.forgejo/workflows/compile.yml
Lewis Jackson b0921c93b5
Some checks failed
Compile / Compile (push) Failing after 47s
Fucking fucks.
2023-05-30 19:37:28 +03:00

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