build(deps): bump pygments from 2.4.0 to 2.18.0 #29
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: pylint | |
on: push # yamllint disable-line rule:truthy | |
jobs: | |
pylint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v3 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- name: Install dependencies for running Pylint | |
run: | | |
uv pip install --system -U \ | |
black \ | |
git+https://github.com/akaihola/darkgraylib.git@main \ | |
defusedxml \ | |
pygments \ | |
'pylint<=3.2.7' \ | |
pytest>=6.2.0 \ | |
regex \ | |
requests \ | |
requests-cache \ | |
ruamel.yaml \ | |
setuptools \ | |
toml | |
uv pip list --system | |
- uses: wearerequired/lint-action@v2.3.0 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
pylint: true | |
continue_on_error: false |