Bump filelock from 3.20.0 to 3.20.1 #1761
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: | |
| - main | |
| types: [opened, reopened, synchronize] | |
| jobs: | |
| format_check: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| python-version: | |
| - "3.11" | |
| runs-on: ${{ matrix.os }} | |
| name: Run PR Check | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Create Environment and Install Dependencies | |
| run: | | |
| python -m pip install --upgrade uv | |
| uv venv | |
| . .venv/bin/activate | |
| echo PATH=$PATH >> $GITHUB_ENV | |
| uv pip install -r requirements-dev.txt | |
| - name: Run Ruff Format - Formatting Check | |
| run: ruff format ./src | |
| - name: Run Ruff - Linting and Import Sorting Check | |
| if: always() | |
| run: ruff check ./src | |
| # - name: Run mypy - Static Type Checking | |
| # if: always() | |
| # run: mypy ./src --config-file ./pyproject.toml |