Skip to content

feat: add split_exp.py for testing split method #2

feat: add split_exp.py for testing split method

feat: add split_exp.py for testing split method #2

Workflow file for this run

name: Run tests
on:
workflow_dispatch:
push:
branches:
- main
- dev
- develop
- '**-develop'
jobs:
Testing:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
os: [ ubuntu-latest ] # , windows-latest, macos-latest
steps:
- uses: actions/checkout@v3
- name: Set up PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pdm install --no-lock -G testing
- name: Run Tests
run: |
pdm run -v pytest tests