Bump aiohttp[speedups] from 3.12.15 to 3.13.2 #2408
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: Check PR | |
| on: | |
| pull_request: | |
| branches: | |
| - gh-pages | |
| jobs: | |
| check: | |
| name: Check PR | |
| runs-on: [ubuntu-24.04] | |
| if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')" | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.10" | |
| - name: Install Python dependencies | |
| run: | | |
| python -m pip install -U pip wheel | |
| python -m pip install -r requirements.txt | |
| - name: Basic check | |
| run: find sources -name \*.geojson | xargs python scripts/check.py | |
| - name: Get file changes | |
| id: get_file_changes | |
| uses: trilom/[email protected] | |
| with: | |
| output: '" "' | |
| - name: Echo file changes | |
| run: | | |
| echo "Changed files: ${{ steps.get_file_changes.outputs.files }}" | |
| - name: Strict check | |
| run: | | |
| python scripts/strict_check.py "${{ steps.get_file_changes.outputs.files }}" |