wip #85
Workflow file for this run
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: Check and test | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
include: | |
- python-version: 3.8 | |
os: windows-2022 | |
runs-on: ${{ matrix.os }} | |
continue-on-error: ${{ matrix.python-version == '3.13-dev' }} | |
steps: | |
- uses: actions/checkout@v4 | |
- run: pip install poetry | |
- uses: actions/setup-python@v5 | |
id: setup-python | |
with: | |
python-version: ${{ matrix.python-version }} | |
- run: poetry env use ${{ steps.setup-python.outputs.python-path }} | |
- run: poetry install | |
- run: poetry run ruff format --check | |
- run: poetry run ruff check | |
- run: poetry run pyright --warnings | |
- run: poetry run pytest | |
- uses: coverallsapp/github-action@v2 | |
if: github.event_name == 'pull_request' && matrix.python-version == '3.8' | |
# build-beets-master: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - run: pip install poetry | |
# - uses: actions/setup-python@v5 | |
# with: | |
# python-version: 3.8 | |
# cache: poetry | |
# - run: poetry env use $(which python) | |
# - run: poetry install | |
# # We cannot use `poetry add` because poetry does not install beets | |
# # dependencies properly | |
# - run: poetry run pip install "git+https://github.com/beetbox/beets#master" | |
# - run: poetry run pytest |