dd tests #95
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
--- | |
# configuration for GitHub Actions | |
name: dd tests | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '37 5 5 * *' | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
python-version: [ | |
'3.11', | |
'3.12', | |
] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Prepare installation environment | |
run: | | |
./.github/workflows/setup_build_env.sh | |
- name: Install `dd` | |
run: | | |
set -o posix | |
echo 'Exported environment variables:' | |
export -p | |
export \ | |
DD_FETCH=1 \ | |
DD_CUDD=1 \ | |
DD_CUDD_ZDD=1 \ | |
DD_SYLVAN=1 | |
pip install . \ | |
--verbose \ | |
--use-pep517 \ | |
--no-build-isolation | |
- name: Install test dependencies | |
run: | | |
pip install pytest | |
- name: Run `dd` tests | |
run: | | |
set -o posix | |
echo 'Exported environment variables:' | |
export -p | |
# run tests | |
make test | |
- name: Run `dd` examples | |
run: | | |
pushd examples/ | |
python _test_examples.py | |
popd |