Skip to content

fix ci_build.yml

fix ci_build.yml #12

Workflow file for this run

name: CI on SWatch project
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Setup CMake
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: '3.16.x'
- name: Use CMake
run: cmake --version
- name: Checkout Pico SDK
uses: actions/checkout@v2
with:
repository: raspberrypi/pico-sdk
path: pico-sdk
- name: Configure
run: |
ls > dir.txt

Check failure on line 29 in .github/workflows/ci_build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci_build.yml

Invalid workflow file

You have an error in your yaml syntax on line 29
cat dir.txt
cmake -B build -DPICO_SDK_PATH=pico-sdk/
- name: Build
run: cmake --build build