Skip to content

Updates for automated testing #253

Updates for automated testing

Updates for automated testing #253

Workflow file for this run

name: pylabfea testing
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.12"]
name: Test pylabfea
steps:
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependecies
run: |
conda --version
which python
python -m pip install .
python -m pip install pytest
- name: Run tests
run: |
pytest tests