Skip to content

Bump urllib3 from 1.26.8 to 1.26.17 #21

Bump urllib3 from 1.26.8 to 1.26.17

Bump urllib3 from 1.26.8 to 1.26.17 #21

Workflow file for this run

name: build
on:
push:
branches: master
pull_request:
branches: master
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
name: Python ${{ matrix.python-version}}
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version}}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r dev-requirements.txt
- name: Run tests
run: pytest -m "not webtest" --cov=bookops_worldcat/
- name: Send report to Coveralls
uses: AndreMiras/coveralls-python-action@develop
with:
github-token: ${{ secrets.GITHUB_TOKEN}}