Skip to content

fix: try to fix version issue in publish workflow #102

fix: try to fix version issue in publish workflow

fix: try to fix version issue in publish workflow #102

Workflow file for this run

name: CI
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
workflow_dispatch:
jobs:
build:
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"] # Add more versions as needed
os: [ubuntu-latest, macos-latest, windows-latest, macos-13]
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 lock --no-update
poetry install
- name: Run tests
run: |
poetry run pytest . -vv
- name: Lint with Black
run: |
poetry run black --check .