fix: windows py38/py39 relative path issue #1003
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: mypy | |
on: push # yamllint disable-line rule:truthy | |
jobs: | |
mypy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
- run: | | |
pip install -U \ | |
black \ | |
git+https://github.com/akaihola/darkgraylib.git@main \ | |
flynt \ | |
git+https://github.com/akaihola/graylint.git@main \ | |
isort \ | |
mypy>=0.990 \ | |
pytest \ | |
types-requests \ | |
types-toml | |
- uses: wearerequired/lint-action@v2.3.0 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
mypy: true | |
mypy_args: "src" | |
continue_on_error: false |