Skip to content

keep lint as flake8 and add format for black #61

keep lint as flake8 and add format for black

keep lint as flake8 and add format for black #61

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: build
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv
pipenv sync --dev
- name: Lint with flake8
run: |
pipenv run lint
- name: Test with pytest
run: |
pipenv run test
COVERAGE=$(pipenv run coverage report | grep TOTAL | tr -s " " | cut -d " " -f 4)
echo "COVERAGE=$COVERAGE" >> $GITHUB_ENV