Skip to content

Added support for Pico and Pico W blinky #8

Added support for Pico and Pico W blinky

Added support for Pico and Pico W blinky #8

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
PICO_SDK_FETCH_FROM_GIT: ON
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: arm-none-eabi-gcc
uses: fiam/arm-none-eabi-gcc@v1.0.2
with:
release: '9-2020-q2' # The arm-none-eabi-gcc release to use.
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build
- name: Build
run: cmake --build ${{github.workspace}}/build