Skip to content

Commit

Permalink
👍 update model
Browse files Browse the repository at this point in the history
  • Loading branch information
shun198 committed Jun 9, 2024
1 parent 2b130a5 commit 9d909bd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-without-model.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
id: check_changes
run: |
MODEL_CHANGED=false
if git diff --name-only | grep -q ${{ env.WORKING_DIRECTORY }}/application/models/; then
if git diff --name-only | grep -c ${{ env.WORKING_DIRECTORY }}/application/models/; > 0 then
echo $MODEL_CHANGED
MODEL_CHANGED=true
fi
Expand Down
1 change: 1 addition & 0 deletions 0
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0
2 changes: 1 addition & 1 deletion application/application/models/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


class User(AbstractUser):
"""システムユーザ"""
"""システムユーザModel"""

username_validator = UnicodeUsernameValidator()

Expand Down

0 comments on commit 9d909bd

Please sign in to comment.