Skip to content

Bump certifi from 2022.12.7 to 2023.7.22 in /docs #19

Bump certifi from 2022.12.7 to 2023.7.22 in /docs

Bump certifi from 2022.12.7 to 2023.7.22 in /docs #19

Workflow file for this run

# This workflows will upload a Python Package using Twine when a release is published
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
name: Test Python Package for pull requests
on:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements.txt
pip install .
- name: Test package
run: |
pip install coverage
coverage run -m unittest discover -s tests
- name: Check code coverage
run: |
pip install codecov
codecov