Skip to content

Implemented Poetry for improved dependency management and easier PyPI… #113

Implemented Poetry for improved dependency management and easier PyPI…

Implemented Poetry for improved dependency management and easier PyPI… #113

Workflow file for this run

on:
push:
branches:
- main
- dev
- issue/**
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
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 dependencies
run: |
python -m pip install --upgrade pip
pip install pip-tools
pip-compile requirements-dev.in
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Test with pytest
run: |
pytest --cov=focus_validator tests/