added back function to encode number of head parameters in axiom #226
This file contains 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: Integration Tests | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout Loki | |
uses: actions/checkout@v2 | |
- name: Configure, Build, and Install Dependencies | |
run: | | |
cd tests/integration/dependencies | |
cmake -S . -B build -DCMAKE_INSTALL_PREFIX="$GITHUB_WORKSPACE/tests/integration/dependencies/installs" | |
cmake --build build | |
- name: Build and Test Project | |
run: | | |
cd tests/integration | |
cmake -S . -B build -DCMAKE_PREFIX_PATH="$GITHUB_WORKSPACE/tests/integration/dependencies/installs" | |
cmake --build build |