style: modern typing in files.py #1065
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 | |
- uses: actions/setup-python@v5 | |
- name: Install dependencies for running Pylint | |
run: | | |
pip install -U \ | |
black \ | |
git+https://github.com/akaihola/darkgraylib.git@main \ | |
defusedxml \ | |
pygments \ | |
pylint \ | |
pytest>=6.2.0 \ | |
regex \ | |
requests \ | |
requests-cache \ | |
ruamel.yaml \ | |
toml | |
pip list | |
- uses: wearerequired/lint-action@v2.3.0 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
pylint: true | |
continue_on_error: false |