Skip to content

Commit

Permalink
Improved schema from comments by Nathan and Joseph
Browse files Browse the repository at this point in the history
Added github action for Ruff check and formatting
  • Loading branch information
JosePizarro3 committed Mar 1, 2024
1 parent b32d1c4 commit c9438c5
Show file tree
Hide file tree
Showing 6 changed files with 432 additions and 455 deletions.
21 changes: 14 additions & 7 deletions .github/workflows/actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,17 @@ jobs:
- name: Test with pytest
run: |
python -m coverage run -m pytest -sv tests
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: chartboost/ruff-action@v1
with:
args: "check"
ruff-linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: chartboost/ruff-action@v1
with:
args: "check ."
ruff-formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: chartboost/ruff-action@v1
with:
args: "format . --check"
Loading

0 comments on commit c9438c5

Please sign in to comment.