Skip to content

Fix indentation in macOS system tests workflow #3

Fix indentation in macOS system tests workflow

Fix indentation in macOS system tests workflow #3

name: System tests (Linux)
on:
push:
branches:
- falco2
jobs:
ubuntu-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y zlib1g-dev libdeflate-dev libhts-dev
- name: Configure for system tests
run: |
cmake -B build \
-DCMAKE_CXX_COMPILER=g++-14 \
-DCMAKE_BUILD_TYPE=Build
- name: Build
run: |
cmake --build build -j4
- name: Run the tests
run: |
ctest --test-dir build --output-on-failure