Skip to content

Update README.md

Update README.md #480

Workflow file for this run

name: Run Tests
on: [push, pull_request]
jobs:
test:
name: Run pytest
runs-on: ubuntu-latest
env:
"create_image": true
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 -r requirements.txt
- name: Change directory and run pytest
working-directory: ./metaspy/
run: pytest