Skip to content

chore(deps): bump dependencies #66

chore(deps): bump dependencies

chore(deps): bump dependencies #66

Workflow file for this run

name: 🧪 Run Tests
on:
push:
pull_request:
workflow_dispatch:
jobs:
test:
strategy:
fail-fast: false
matrix:
config:
- Release
- Debug
os:
- macos-latest
- windows-latest
include:
- os: ubuntu-latest
config: Release
container: ghcr.io/viennatools/vienna-builder:vtk
- os: ubuntu-latest
config: Debug
container: ghcr.io/viennatools/vienna-builder:vtk
- os: ubuntu-latest
config: Release
container: ghcr.io/viennatools/vienna-builder:stock
- os: ubuntu-latest
config: Debug
container: ghcr.io/viennatools/vienna-builder:stock
runs-on: ${{ matrix.os }}
container: ${{ matrix.container }}
name: '🧪 Test on ${{ matrix.os }} ["${{ matrix.config }}", VTK: "${{ matrix.vtk-system }}"]'
steps:
- name: 📥 Checkout
uses: actions/checkout@v4
- name: 🖥️ Setup Environment
uses: ./.github/actions/setup
with:
os: ${{ matrix.os }}
- name: 🦥 Cache Dependencies
uses: actions/cache@v4
with:
key: test-${{ matrix.os }}-${{ matrix.config }}-${{ matrix.vtk-system }}
path: build
- name: 🏗️ Compile
run: cmake -DVIENNALS_BUILD_TESTS=ON -B build && cmake --build build --config ${{ matrix.config }}
- name: 🧪 Test
run: ctest -E "Benchmark|Performance" -C ${{ matrix.config }} --test-dir build