Skip to content

Narrow tests

Narrow tests #116

Workflow file for this run

name: cint pipeline
on:
- push
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Compile
run: |
env
cmake -DWITH_RANGE_COULOMB=OFF -DWITH_COULOMB_ERF=OFF -DWITH_F12=OFF -Bbuild -DKEEP_GOING=1 .
cmake --build build
pip install numpy mpmath pyscf
- name: Unittest
if: startsWith(matrix.os, 'ubuntu')
run: |
cd ${{ github.workspace }}/tests
python test_int1e_grids.py