Skip to content

feat: testing version env var #29

feat: testing version env var

feat: testing version env var #29

Workflow file for this run

name: Flake8 Lint
on:
- pull_request
jobs:
flake8-lint:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Install pipenv
run: |
python -m pip install --upgrade pip
pip install pipenv
- name: Install dependencies using pipenv
run: pipenv install --dev
- name: Run Flake8 using pipenv
run: pipenv run flake8 .