From e62eb196474aa369c9d04bfc57f7aa894bbe7fd9 Mon Sep 17 00:00:00 2001 From: Conrad Date: Fri, 25 Oct 2024 13:43:50 +0200 Subject: [PATCH] fix: Adjusted pipeline --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ef3fdb3..d7f2834 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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