Skip to content

Bump certifi from 2022.12.7 to 2023.7.22 #38

Bump certifi from 2022.12.7 to 2023.7.22

Bump certifi from 2022.12.7 to 2023.7.22 #38

Workflow file for this run

name: Testing
on:
push:
branches: [ main ]
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Test with pytest and coverage.py
run: |
poetry run coverage run -m pytest tests/ -q
poetry run coverage report -m
- name: Publish coverage report to coveralls.io
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: poetry run coveralls --service=github