WatchyWatchFace/.forgejo/workflows/compile.yml
Workflow config file is invalid. Please check your config file: yaml: line 10: could not find expected ':'

17 lines
373 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
add-apt-repository universe
apt install platformio
- name: Compile
run: |
cd ${{ github.workspace }}
pio run
- run: echo "Done."