Skip to content

Update build script #10

Update build script

Update build script #10

Workflow file for this run

name: Unittests
on: [push, pull_request]
jobs:
linux-build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04]
python-version: ["3.9"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: |
pip install -e .
pip install pytest
- name: Test
run: |
export PYSCF_EXT_PATH=$(pwd):$PYSCF_EXT_PATH
pytest -s pyscf/dispersion