Skip to content

Merge branch 'main' of https://github.com/numpex/proxy-geos-hc #4

Merge branch 'main' of https://github.com/numpex/proxy-geos-hc

Merge branch 'main' of https://github.com/numpex/proxy-geos-hc #4

Workflow file for this run

name: CI
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: self-spack
strategy:
matrix:
preset: [default, kokkos]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Configure CMake
run: |
spacktivate proxy-geos
cmake --preset ${{ matrix.preset }}
- name: Build
run: cmake --build --preset ${{ matrix.preset }}
- name: Test
run: ctest --preset ${{ matrix.preset }}