Skip to content

Commit

Permalink
ci: add a lint pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
HarshCasper committed May 13, 2022
1 parent 329555b commit 403b2e2
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Lint
on: [push, pull_request]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:

- name: Checkout the repository
uses: actions/checkout@v3

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

- name: Checks Black formatting
uses: psf/black@stable

0 comments on commit 403b2e2

Please sign in to comment.