Skip to content

Merge pull request #30 from EBI-Metagenomics/bugfix/retries-when-file… #115

Merge pull request #30 from EBI-Metagenomics/bugfix/retries-when-file…

Merge pull request #30 from EBI-Metagenomics/bugfix/retries-when-file… #115

Workflow file for this run

name: Testing
on: [push, pull_request]
env:
FETCH_TOOL_CONFIG: ${{ github.workspace }}/config/testing.json
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
pip install .[test]
- name: 🧪 - Testing
run: |
pytest -v