Skip to content

chore(ci): Extended CI Workflow to linux_dev branch #10

chore(ci): Extended CI Workflow to linux_dev branch

chore(ci): Extended CI Workflow to linux_dev branch #10

Workflow file for this run

name: CI
on:
push:
branches: [ main, linux_dev ]
pull_request:
branches: [ main, linux_dev ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Install dependencies
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get update && sudo apt-get install -y build-essential cmake
- name: Configure
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
- name: Build
run: cmake --build build
- name: Run tests
if: always()
run: |
cd build
ctest --output-on-failure || true