Skip to content

Merge pull request #4 from Cactus-proj/dev #16

Merge pull request #4 from Cactus-proj/dev

Merge pull request #4 from Cactus-proj/dev #16

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
permissions:
contents: read # to fetch code (actions/checkout)
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Configure
run: cmake -S . -B build
- name: Build
run: cmake --build build