Skip to content

Remove custom action dependency #4

Remove custom action dependency

Remove custom action dependency #4

Workflow file for this run

name: Build
on:
push:
jobs:
build-project:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v3.5.3
- name: Configure the project
run: cmake -S . -B build
- name: Build the project
run: cmake --build build
- name: Test the project
run: ctest --test-dir build