Skip to content

Option to use qform in surface extraction + minor fixes (#298) #1045

Option to use qform in surface extraction + minor fixes (#298)

Option to use qform in surface extraction + minor fixes (#298) #1045

name: osl-cicd-actions
on: [push]
jobs:
osl-cicd:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v2
# Setup Python (faster than using Python container)
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install pipenv
run: |
python -m pip install --upgrade pipenv wheel
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[full]
- name: Run test suite
run: |
pytest