Skip to content

package setup

package setup #1

Workflow file for this run

name: Lint and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on:
- ubuntu-latest
- macos-latest
- windows-latest
strategy:
matrix:
python-version: [3.10, 3.11, 3.12]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
export PATH="$HOME/.poetry/bin:$PATH"
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run pytest