WatchyWatchFace/.forgejo/workflows/compile.yml
Lewis Jackson 619d1003e6
Some checks reported warnings
Compile / Compile (push) Has been cancelled
Specify jammy docker image
2023-05-30 19:48:45 +03:00

19 lines
499 B
YAML

name: Compile
run-name: ${{ github.actor }} is compiling
on: [push]
jobs:
Compile:
runs-on: ubuntu-jammy
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."