Skip to content

Commit

Permalink
Merge branch 'caporaso-lab:master' into Diagnostics-addition-to-sourc…
Browse files Browse the repository at this point in the history
…etracker
  • Loading branch information
andy6a authored Dec 8, 2023
2 parents 91362d6 + db7f92a commit 99b727c
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/flake8.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Flake8
on:
pull_request: {}
push: {}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: checkout source
uses: actions/checkout@v3

- name: set up python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8

- name: install dependencies
run: |
python -m pip install --upgrade pip
pip install -q flake8
- name: run flake8
run: flake8

0 comments on commit 99b727c

Please sign in to comment.