WatchyWatchFace/.forgejo/workflows/compile.yml
Lewis Jackson b5de3d25ee
Some checks failed
Compile / Compile (push) Failing after 44s
Docker didn't like ubuntu-jammy?
2023-05-30 19:52:09 +03:00

19 lines
500 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 jammy universe"
apt update
apt -y install platformio
- name: Compile
run: |
cd ${{ github.workspace }}
pio run
- run: echo "Done."