WatchyWatchFace/.forgejo/workflows/compile.yml
Lewis Jackson e1f478fce1
Some checks failed
Compile / Compile (push) Failing after 45s
Stackoverflow is wrong, again.
2023-05-30 19:40:48 +03:00

19 lines
513 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 "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) universe"
apt update
apt -y install platformio
- name: Compile
run: |
cd ${{ github.workspace }}
pio run
- run: echo "Done."