Allow users-defined THROW_PRETTY
and CHECK_ARGUMENT_SIZE
macros
#330
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI - ArchLinux | |
on: | |
push: | |
pull_request: | |
paths-ignore: | |
- CHANGELOG.md | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-with-arch: | |
runs-on: "ubuntu-latest" | |
container: | |
image: archlinux/archlinux:base-devel | |
steps: | |
- run: pacman -Syu --noconfirm cmake eigen git libmatio python-scipy simde | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- run: cmake -B build -S . -DBUILD_PYTHON_INTERFACE=ON | |
- run: cmake --build build | |
- run: cmake --build build -t test |