Skip to content

Output segemenst from EoM derivation. #12

Output segemenst from EoM derivation.

Output segemenst from EoM derivation. #12

Workflow file for this run

name: test
on:
push:
branches: master
pull_request:
branches: master
# cancels prior builds for this workflow when new commit is pushed
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.13"]
name: test
steps:
- uses: actions/checkout@v4
- name: Setup Conda environment
uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
channels: conda-forge
environment-file: gait2d-dev.yml
- name: install and run tests
shell: bash -l {0}
run: |
conda info
python -m pip install --no-deps --no-build-isolation --editable .
conda list
python -c "import pygait2d.segment"
python -c "import algait2de.gait2de"
pytest pygait2d/