Skip to content

Commit

Permalink
Try pylint and black
Browse files Browse the repository at this point in the history
  • Loading branch information
duckduckgrayduck authored Nov 29, 2023
1 parent 0a79cbc commit 6084df1
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,23 @@ jobs:
run: |
make test
working-directory: .

pylint-and-black:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2

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

- name: Install pylint and black
run: |
pip install pylint black
- name: Run pylint and black
run: |
pylint ./documentcloud
black ./documentcloud

0 comments on commit 6084df1

Please sign in to comment.