Skip to content

Merge pull request #372 from DEENUU1/refactor/1.3 #472

Merge pull request #372 from DEENUU1/refactor/1.3

Merge pull request #372 from DEENUU1/refactor/1.3 #472

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