Skip to content

Bump charset-normalizer from 3.1.0 to 3.2.0 in /components/cgi/ddns #283

Bump charset-normalizer from 3.1.0 to 3.2.0 in /components/cgi/ddns

Bump charset-normalizer from 3.1.0 to 3.2.0 in /components/cgi/ddns #283

Workflow file for this run

name: pip check
on:
pull_request:
jobs:
main:
runs-on: "ubuntu-22.04"
permissions:
contents: read
strategy:
fail-fast: false
matrix:
directory:
- cgi/ddns
- cgi/nginxdbauth
- cgi/passwd
- cgi/uptimerobot
- haemera
- letsencrypt
- prometheus/github
- prometheus/mailcheck
- radicale
- thyrida
- wosc/rsspull
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: pip check
run: |
cd components/${{matrix.directory}}
python -m venv .venv
.venv/bin/pip install wheel
.venv/bin/pip install --no-deps -r requirements.txt
.venv/bin/pip check