Skip to content

Bump certifi from 2020.11.8 to 2023.7.22 #27

Bump certifi from 2020.11.8 to 2023.7.22

Bump certifi from 2020.11.8 to 2023.7.22 #27

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: psf/black@stable
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/[email protected]
- name: Install Dependencies using Poetry
run: poetry install
- name: Run tests
run: |
poetry run coverage run --source=. -m unittest discover -v
- name: Coveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
pip install coveralls
coveralls --service=github
- name: Build
run: |
poetry build