remove duplicate states from faithful abstraction when compute_comple… #1157
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 Mimir | |
uses: actions/checkout@v2 | |
with: | |
ref: main | |
- 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 |