Bump requests from 2.32.3 to 2.32.4 #330
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: Quality assurance | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| linting: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python 3.12 | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.12" | |
| - name: Install required packages | |
| run: pip install pre-commit | |
| - name: Run linters | |
| run: pre-commit run --all-files --hook-stage push | |
| build: | |
| name: Python ${{ matrix.python-version }}, django ${{ matrix.django-version }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
| django-version: [32, 42, 50] | |
| exclude: | |
| - python-version: '3.8' | |
| django-version: 50 | |
| - python-version: '3.9' | |
| django-version: 50 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: setup python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install tox | |
| run: pip install tox | |
| - name: Run Tests | |
| env: | |
| TOXENV: django${{ matrix.django-version }} | |
| run: tox |