WatchyWatchFace/.forgejo/workflows/compile.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 14: mapping key "run" already defined at line 13 line 15: mapping key "run" already defined at line 13 line 15: mapping key "run" already defined at line 14
2023-05-30 21:09:07 +03:00

16 lines
351 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 platformio
- name: Compile
run: ls
run: cd ${{ github.workspace }}
run: pio run
- run: echo "Done."