Skip to content

PhilippGrulich builds Nautilus #8

PhilippGrulich builds Nautilus

PhilippGrulich builds Nautilus #8

Workflow file for this run

name: Build Nautilus
run-name: ${{ github.actor }} builds Nautilus
on: [push]
jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
- name: get cmake
uses: lukka/get-cmake@latest
- name: cmake
shell: bash
run: |
cmake -DCMAKE_BUILD_TYPE=Debug -G Ninja -S . -B .
- name: build
shell: bash
run: |
cmake --build . --target all