Skip to content

Commit

Permalink
Add steps in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
abhaasgoyal committed Jul 17, 2024
1 parent ab1d22d commit f5325e4
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,13 @@ jobs:
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
- name: Use black for formatting reports
uses: psf/black@stable
with:
options: "--check"
src: "./src ./tests"
- name: Use ruff for linting reports
uses: chartboost/ruff-action@v1
with:
args: check --output-format=github
src: "./src ./tests"

0 comments on commit f5325e4

Please sign in to comment.