Skip to content

chore(deps): update dependency urllib3 to v2.6.0 [security] #46

chore(deps): update dependency urllib3 to v2.6.0 [security]

chore(deps): update dependency urllib3 to v2.6.0 [security] #46

Workflow file for this run

name: Test
on:
push:
paths-ignore:
- "docs/**"
- "**.md"
pull_request:
paths-ignore:
- "docs/**"
- "**.md"
workflow_call:
jobs:
test:
name: Unit test
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
steps:
- uses: actions/checkout@v3
- name: Install python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
# shellcheck disable=SC2102
pip install -e .[test]
- 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