fix: drop dirs param in s3 listdir/scandir #77
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: Code Quality | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.9" | |
- run: pip install --upgrade pip | |
- run: pip install .[dev] | |
- run: mypy fsconnectors/ | |
- run: ruff check fsconnectors/ --config pyproject.toml | |
- run: isort --check fsconnectors/ |