Skip to content

REL: add module install.py #89

REL: add module install.py

REL: add module install.py #89

Workflow file for this run

---
# 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_CUDD_ADD=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
typecheck:
name: Static analysis of Python code
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: [
'3.10',
]
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 typechecking environment
run: |
./.github/workflows/setup_typecheck_env.sh
- name: Statically analyze `dd`
run: |
pytype -k \
dd/*.py \
-x dd/__init__.py
- name: Statically analyze setup files
run: |
pip install -U \
cython \
gitpython
pytype -k \
setup.py \
install.py \
# download.py
- name: Statically analyze `examples/`
run: |
pip uninstall -y dd
python install.py --yes \
--ignore-requires-python
pytype -k \
examples/*.py