Skip to content

build(deps-dev): bump pipenv from 2021.5.29 to 2022.1.8 #19

build(deps-dev): bump pipenv from 2021.5.29 to 2022.1.8

build(deps-dev): bump pipenv from 2021.5.29 to 2022.1.8 #19

Workflow file for this run

name: Build
on:
push:
branches: [ master, dev ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.6, 3.7, 3.8, 3.9 ]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install requirements
run: |
python -m pip install -U pip pipenv
pipenv sync --dev --system
- name: Check code style
if: matrix.python-version == 3.9
run: |
black -l 120 --check .
- name: Test Installation
run: |
python setup.py install
pytest --cov=./