Skip to content

Bump urllib3 from 2.5.0 to 2.6.0 in the pip group across 1 directory #86

Bump urllib3 from 2.5.0 to 2.6.0 in the pip group across 1 directory

Bump urllib3 from 2.5.0 to 2.6.0 in the pip group across 1 directory #86

Workflow file for this run

name: build
on:
push:
branches:
- master
pull_request:
branches: [ master ]
workflow_call:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: [ '3.9', '3.10', '3.11', '3.12' ]
os: [ ubuntu-latest, macOS-latest, windows-latest ]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install codecov
make
make devel
make install
- name: Run tests
run: make test
- name: Run docs build test
run: make -C docs/ html
- name: upload coverage
uses: codecov/codecov-action@v2