Bump ruff from 0.6.9 to 0.7.1 #356
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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." |