WatchyWatchFace/.forgejo/workflows/compile.yml
Lewis Jackson 2227385d22
Some checks failed
Compile / Compile (push) Failing after 4s
Add universe repository to workflow
2023-05-30 19:19:56 +03:00

14 lines
318 B
YAML

name: Compile
run-name: ${{ github.actor }} is compiling
on: [push]
jobs:
Compile:
runs-on: ubuntu-latest
steps:
- run: add-apt-repository universe
- run: apt install platformio
- name: Compile
run: |
cd ${{ github.workspace }}
pio run
- run: echo "Done."