Skip to content

Merge pull request #88 from computerscienceiscool/patch-1 #687

Merge pull request #88 from computerscienceiscool/patch-1

Merge pull request #88 from computerscienceiscool/patch-1 #687

Workflow file for this run

name: lint
on:
push:
pull_request:
jobs:
lint:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.6
- name: Install dependencies
run: |
pip install --upgrade setuptools
pip install pycodestyle
pip install flake8
python setup.py build
- name: Check code style.
run: pycodestyle gadma
- name: flake8
run: flake8 --exit-zero ./gadma