Skip to content

Fixes and missing operator implementations for btorsim #29

Fixes and missing operator implementations for btorsim

Fixes and missing operator implementations for btorsim #29

Workflow file for this run

on: [push, pull_request]
name: CI
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Configure
run: |
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=$(pwd)/install
- name: Build
working-directory: build
run: make -j2
- name: Install
working-directory: build
run: make install