Bump charset-normalizer from 3.4.1 to 3.4.3 #583
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: Testing | |
| env: | |
| # Enable colored output for pytest | |
| # https://github.com/pytest-dev/pytest/issues/7443 | |
| # https://github.com/actions/runner/issues/241 | |
| PY_COLORS: 1 | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| # Limit concurrency by workflow/branch combination. | |
| # | |
| # For pull request builds, pushing additional changes to the | |
| # branch will cancel prior in-progress and pending builds. | |
| # | |
| # For builds triggered on a branch push, additional changes | |
| # will wait for prior builds to complete before starting. | |
| # | |
| # https://docs.github.com/en/actions/using-jobs/using-concurrency | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| jobs: | |
| # see https://docs.astral.sh/uv/guides/integration/github/ | |
| python-tests: | |
| name: python | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: | |
| - "3.8" | |
| - "3.9" | |
| - "3.10" | |
| - "3.11" | |
| - "3.12" | |
| - "3.13" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| fetch-depth: 0 | |
| - name: Remove sitecustomize.py | |
| run: | | |
| sudo rm -f /usr/lib/python3.*/sitecustomize.py | |
| sudo rm -f /etc/python3.*/sitecustomize.py | |
| - name: Install the latest version of uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| version: "latest" | |
| - name: Set up Python ${{ matrix.python-version }} | |
| run: uv python install ${{ matrix.python-version }} | |
| - name: Install the project | |
| run: uv sync --all-groups | |
| - name: Run tests | |
| run: uv run pytest tests --cov=src --cov-report html --cov-report xml --cov-report term -v | |
| # https://github.com/codecov/codecov-action | |
| - name: "Upload coverage to Codecov" | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| fail_ci_if_error: false # optional (default = false) | |
| # files: var/coverage/coverage.xml # optional | |
| directory: var/coverage | |
| flags: unittests # optional | |
| token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos | |
| verbose: true # optional (default = false) |