Skip to content

Merge pull request #407 from CosmosTUe/staging #1378

Merge pull request #407 from CosmosTUe/staging

Merge pull request #407 from CosmosTUe/staging #1378

Workflow file for this run

name: Lint
on:
push:
branches:
- master
- staging
pull_request:
branches:
- master
- staging
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.8'
cache: 'pipenv'
- name: Set up pipenv
run: python -m pip install --upgrade pipenv wheel
- name: Install requirements
run: pipenv install --deploy --dev
- name: Run flake8
run: pipenv run flake8 .