Skip to content

Update progress log to reflect recent tasks and improvements in CI wo… #5

Update progress log to reflect recent tasks and improvements in CI wo…

Update progress log to reflect recent tasks and improvements in CI wo… #5

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
- 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