Skip to content

Fix workflow

Fix workflow #1

Workflow file for this run

name: C++ Build Check
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install CMake
run: sudo apt-get update && sudo apt-get install -y cmake
- name: Create Build Directory
run: mkdir -p build
- name: Configure CMake
run: cmake -S . -B build
- name: Build Project
run: cmake --build build --config Release