Skip to content
This repository has been archived by the owner on Feb 21, 2024. It is now read-only.

Bump certifi from 2023.5.7 to 2023.7.22 #21

Bump certifi from 2023.5.7 to 2023.7.22

Bump certifi from 2023.5.7 to 2023.7.22 #21

Workflow file for this run

---
name: Unit Tests
on:
push:
branches:
- master
pull_request:
types:
- opened
- edited
- synchronize
jobs:
unit_tests:
name: Unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Setup
- name: Set up Python 3.7
uses: actions/setup-python@v1
with:
python-version: 3.7
- name: Install python dependencies
run: |
pip install pipenv
pipenv install --dev --ignore-pipfile
# Run Tests
- name: Unit tests
run: pipenv run py.test --cov=drainer