Skip to content

Bump certifi from 2023.7.22 to 2024.7.4 (#114) #156

Bump certifi from 2023.7.22 to 2024.7.4 (#114)

Bump certifi from 2023.7.22 to 2024.7.4 (#114) #156

Workflow file for this run

name: Tests
permissions:
contents: read
on:
push:
branches: main
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Check out code
uses: actions/checkout@v2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Test
run: |
poetry run pytest src/tests --cov=./ --cov-report=xml