Skip to content

hello(world): initial action and CMakeLists #1

hello(world): initial action and CMakeLists

hello(world): initial action and CMakeLists #1

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: [ubuntu-22.04]
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Install requirements.
run : |
apt update
apt --yes --no-install-recommends install $(grep -vE "^\s*#" requirements/requirements.system.txt | tr "\n" " ")
- name: Configure and build.
run : |
cmake -S . build
cmake --build build