Skip to content

Merge pull request #48 from HaoZeke/feat/2026-08-17-flexiblas #163

Merge pull request #48 from HaoZeke/feat/2026-08-17-flexiblas

Merge pull request #48 from HaoZeke/feat/2026-08-17-flexiblas #163

Workflow file for this run

name: "Build pydseamslib and test"
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build_test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: mamba-org/setup-micromamba@v2
with:
environment-file: environment.yml
- name: Install and test
shell: bash -el {0}
run: |
pip install -v '.[test,ase]'
python -c 'import pydseamslib as ds; print(ds.__version__); print(ds.cyoda)'
python -m pytest -vvv tests