Skip to content

Bump requests from 2.34.0 to 2.34.1 (#129) #564

Bump requests from 2.34.0 to 2.34.1 (#129)

Bump requests from 2.34.0 to 2.34.1 (#129) #564

Workflow file for this run

name: CI
on:
- push
- pull_request
- workflow_dispatch
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions: {}
jobs:
test:
runs-on: ubuntu-latest
name: Test with Python ${{ matrix.python }}
strategy:
matrix:
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: setup test environment
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0
with:
python-version: ${{ matrix.python }}
- name: update apt
run:
sudo apt-get update
- name: install apt packages
run: |
sudo apt-get update
sudo apt-get install -y libimage-exiftool-perl gettext
- name: install pip
run:
python -m pip install --upgrade pip
- name: install package
run:
python -m pip install .[dev,extended_rpm]
- name: test
run:
coverage run -m unittest discover --verbose --start-directory tests/
- name: coverage report
run: |
coverage combine
coverage report
- name: lint
run:
flake8
- name: mypy
run:
mypy
# Enable after https://github.com/codespell-project/codespell/issues/3387 and
# https://github.com/codespell-project/codespell/issues/3381 are resolved.
# - name: codespell
# run:
# codespell