Skip to content

Merge branch 'feature/add-poetry' #17

Merge branch 'feature/add-poetry'

Merge branch 'feature/add-poetry' #17

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
strategy:
matrix:
python-version: [3.9, '3.10'] # Add more versions as needed
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Check out code
uses: actions/checkout@v3
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry install
- name: Run tests
run: |
poetry run pytest . -vv
- name: Lint with Black
run: |
poetry run black --check .