Skip to content

Bump black from 24.8.0 to 24.10.0 #349

Bump black from 24.8.0 to 24.10.0

Bump black from 24.8.0 to 24.10.0 #349

Workflow file for this run

name: Tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
tests:
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "poetry"
- run: poetry install --with tests --without dev,docs
# - run: poetry run # TODO: Add tests here
- name: Check packaging
run: |
echo "Building packages"
poetry build
echo "Validating packages"
poetry run twine check dist/*
echo "Packages build and valdiate successfully."