Skip to content

workflow: change working directory #2

workflow: change working directory

workflow: change working directory #2

Workflow file for this run

name: CI
on:
push:
workflow_dispatch:
schedule:
- cron: '20 16 * * *'
jobs:
tutorial:
name: Build tutorial
runs-on: ubuntu-24.04
container: ghcr.io/iarsystems/arm
steps:
- name: Checkout project
uses: actions/checkout@v4
- name: CMake - Configure
working-directory: tutorial
run: cmake -GNinja -Bbuild
- name: CMake - Build
working-directory: tutorial
run: cmake --build build --verbose