Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 93867a5382 | |||
| ed7b4eb908 | |||
| e62eb19647 |
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
@@ -1,4 +1,4 @@
|
||||
name: Lint, Test, Tag, Build and Deploy DEV
|
||||
name: Lint, Test, Tag, Build and Deploy
|
||||
|
||||
on:
|
||||
push:
|
||||
@@ -25,11 +25,11 @@ jobs:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: psf/black@stable
|
||||
with:
|
||||
options: "-l 100 --exclude '/.venv/|alembic/|/__init__.py'"
|
||||
options: "-l 100 --exclude '/.venv/|/__init__.py'"
|
||||
- uses: creyD/autoflake_action@master
|
||||
with:
|
||||
no_commit: True
|
||||
options: --in-place --remove-all-unused-imports -r --exclude **/__init__.py,**/db/models.py,
|
||||
options: --in-place --remove-all-unused-imports -r --exclude **/__init__.py
|
||||
- uses: stefanzweifel/git-auto-commit-action@v5
|
||||
with:
|
||||
commit_message: Adjusted files for isort & autopep
|
||||
@@ -78,7 +78,7 @@ jobs:
|
||||
major_pattern: "breaking:"
|
||||
minor_pattern: "feat:"
|
||||
enable_prerelease_mode: false
|
||||
version_format: "${major}.${minor}.${patch}-rc${increment}"
|
||||
version_format: "${major}.${minor}.${patch}"
|
||||
|
||||
- name: Create Tag
|
||||
run: git tag ${{ steps.git_version.outputs.version }}
|
||||
|
||||
@@ -1,9 +1,7 @@
|
||||
import os
|
||||
from fastapi import APIRouter
|
||||
from fastapi import Response
|
||||
from fastapi import APIRouter, FastAPI, Response
|
||||
from creyPY.fastapi.app import generate_unique_id
|
||||
from dotenv import load_dotenv
|
||||
from fastapi import FastAPI
|
||||
from fastapi.middleware.cors import CORSMiddleware
|
||||
|
||||
load_dotenv()
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
from creyPY.fastapi.testing import GenericClient
|
||||
|
||||
from .main import app
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user