Skip to content

merge most recent changes #207

merge most recent changes

merge most recent changes #207

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
run-tests:
runs-on: ubuntu-latest
services:
mongodb:
image: mongo
ports:
- 27017:27017
steps:
- name: Check out repository
uses: actions/checkout@main
with:
ref: main
# fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@main
with:
python-version: '3.10'
- name: Install project and dependencies
run: python -m pip install --upgrade pip && pip install smoldyn simulariumio && pip install .
- name: Install additional dependencies
run: |
pip install nbconvert pytest pytest-cov
- name: Test with pytest
run: |
pytest