Skip to content

Updated main to run the linux test when built #40

Updated main to run the linux test when built

Updated main to run the linux test when built #40

Workflow file for this run

name: Linux Build
on:
push:
branches: '*'
pull_request:
branches: '*'
jobs:
build-windows:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Install CMake
uses: jwlawson/actions-setup-cmake@v1
with:
cmake-version: "4.0.0"
- name: Configure CMake
run: cmake -S . -B build
- name: Build
run: cmake --build build --config Release