Skip to content

test: Make benchmark compilation optional #121

test: Make benchmark compilation optional

test: Make benchmark compilation optional #121

Workflow file for this run

# SPDX-FileCopyrightText: 2025 VTT Technical Research Centre of Finland Ltd
# SPDX-License-Identifier: AGPL-3.0-or-later
name: OpenPFC CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v22
- run: nix flake check --print-build-logs
# Run all tests except benchmarks (they're too slow for CI)
# The '~[benchmark]' filter excludes any test tagged with [benchmark]
- run: nix run .#test -- '~[benchmark]'