Skip to content

Update progress log to include recent developments and ongoing tasks … #7

Update progress log to include recent developments and ongoing tasks …

Update progress log to include recent developments and ongoing tasks … #7

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.10"
- "3.12"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v3
- name: Set PYTHONPATH
run: echo "PYTHONPATH=${{ github.workspace }}/src" >> $GITHUB_ENV
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .
pip install pytest h5py
- name: Run unit tests
run: pytest --maxfail=1 --disable-warnings -q
- name: Run CLI demo
run: python scripts/lattice_sweep_demo.py