Skip to content

Merge pull request #60 from omicsNLP/dependabot/pip/networkx-3.4.2 #23

Merge pull request #60 from omicsNLP/dependabot/pip/networkx-3.4.2

Merge pull request #60 from omicsNLP/dependabot/pip/networkx-3.4.2 #23

Workflow file for this run

name: Test and build
on:
push:
branches: [main]
pull_request:
workflow_call:
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
python-version: ['3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run pytest