Skip to content

Fix runners for actions #5

Fix runners for actions

Fix runners for actions #5

Workflow file for this run

name: build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: linux
steps:
- uses: actions/checkout@v4
- name: "run CMake"
run: cmake -S . build
- name: "build project"
run: cmake --build build --target all -j4