mirror of
https://github.com/creyD/creyPY.git
synced 2026-04-16 21:30:30 +02:00
Fixed issue in pipeline
This commit is contained in:
5
.github/workflows/lint.yml
vendored
5
.github/workflows/lint.yml
vendored
@@ -33,6 +33,11 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: setup git
|
||||||
|
run: |
|
||||||
|
git config --local user.email "actions@github.com"
|
||||||
|
git config --local user.name "GitHub Action"
|
||||||
|
|
||||||
- name: Git Version
|
- name: Git Version
|
||||||
uses: codacy/git-version@2.8.0
|
uses: codacy/git-version@2.8.0
|
||||||
id: git_version
|
id: git_version
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ from uuid import UUID
|
|||||||
from pydantic import BaseModel, ConfigDict
|
from pydantic import BaseModel, ConfigDict
|
||||||
|
|
||||||
|
|
||||||
|
# The created_by_id is a string because we use the sub from Auth0
|
||||||
class BaseSchemaModelIN(BaseModel):
|
class BaseSchemaModelIN(BaseModel):
|
||||||
created_by_id: str
|
created_by_id: str
|
||||||
model_config = ConfigDict(from_attributes=True)
|
model_config = ConfigDict(from_attributes=True)
|
||||||
|
|||||||
Reference in New Issue
Block a user