Skip to content

Merge branch 'main' of https://github.com/dsillman2000/metadock into … #4

Merge branch 'main' of https://github.com/dsillman2000/metadock into …

Merge branch 'main' of https://github.com/dsillman2000/metadock into … #4

Workflow file for this run

name: Python package
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install package
run: |
poetry install
- name: Test with pytest
run: |
poetry run pytest tests/ -vvv