Skip to content

updated exec and models #108

updated exec and models

updated exec and models #108

Workflow file for this run

name: Run pytest
on:
push:
branches:
- dev
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.10.0
- name: Install dependencies
run: pip install -e .
- name: Run pytest
run: pytest