Bump docker/login-action from 3.5.0 to 3.6.0 #217
Workflow file for this run
This file contains hidden or 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: Python package | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest] | |
| python-version: ['3.10', '3.11', '3.12', '3.13'] | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| sudo apt install --no-install-recommends -y rustc | |
| pip install -U pip testtools git+https://github.com/breezy-team/breezy bs4 lxml ruff | |
| python setup.py develop | |
| - name: Typing checks | |
| run: | | |
| pip install -U mypy | |
| #python -m mypy wikkid | |
| - name: Ruff format | |
| run: ruff format --check . | |
| - name: Ruff lint | |
| run: ruff check . | |
| - name: Test suite run | |
| run: | | |
| python -m testtools.run discover wikkid.tests | |
| env: | |
| PYTHONHASHSEED: random |