Skip to content

chore(deps): bump urllib3 from 2.2.2 to 2.2.3 (#392) #1061

chore(deps): bump urllib3 from 2.2.2 to 2.2.3 (#392)

chore(deps): bump urllib3 from 2.2.2 to 2.2.3 (#392) #1061

Workflow file for this run

name: Test
on:
push:
paths-ignore:
- "docs/**"
- "**.md"
pull_request:
paths-ignore:
- "docs/**"
- "**.md"
permissions: read-all
jobs:
test:
name: Unit test
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.9'
- '3.10'
- '3.11'
- "3.12"
steps:
- uses: actions/checkout@v4
- name: Install python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
# shellcheck disable=SC2102
pip install .[test] .[map]
- name: Test
run: coverage run -m pytest
- name: Post coverage results
uses: coverallsapp/github-action@v2
with:
flag-name: run-${{ matrix.python-version }}
parallel: true
finish:
needs: test
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@v2
with:
parallel-finished: true
lint:
name: Formatting check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
# Full git history is needed to get a proper list of changed test_files within `super-linter`
fetch-depth: 0
- name: Lint
uses: super-linter/super-linter@v6
env:
VALIDATE_ALL_CODEBASE: false
DEFAULT_BRANCH: master
VALIDATE_JSCPD: false
VALIDATE_CSS: false
VALIDATE_BASH: false
VALIDATE_YAML: false
VALIDATE_PYTHON_PYLINT: false
VALIDATE_NATURAL_LANGUAGE: false
VALIDATE_MARKDOWN: false
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
LINTER_RULES_PATH: /
PYTHON_BLACK_CONFIG_FILE: pyproject.toml
PYTHON_ISORT_CONFIG_FILE: pyproject.toml
PYTHON_MYPY_CONFIG_FILE: pyproject.toml
PYTHON_FLAKE8_CONFIG_FILE: .flake8
test_docs:
name: Test docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install python 3.12
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
pip install -r requirements.txt
pip install .
- name: Build docs
run: sphinx-build -b html docs public