Skip to content

Extended examples in Tree-building #56

Extended examples in Tree-building

Extended examples in Tree-building #56

Workflow file for this run

name: Pytest on Pull Request
on:
pull_request:
branches:
- main
jobs:
test:
name: Run Pytest
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install dependencies
run: |
pip install . pytest
- name: Run Pytest
run: make test