From 90c99c3f853baa32e84679e32ff5fac69bc051fd Mon Sep 17 00:00:00 2001 From: IgorVolochay Date: Sat, 15 Feb 2025 16:55:58 +0300 Subject: [PATCH] Update workflows Change that CI will only run if .py files are changed or added --- .github/workflows/app-actions.yml | 2 ++ .gitignore | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/app-actions.yml b/.github/workflows/app-actions.yml index 81665fe..ee9033b 100644 --- a/.github/workflows/app-actions.yml +++ b/.github/workflows/app-actions.yml @@ -2,6 +2,8 @@ name: app-actions on: push: + paths: + - '**.py' branches: - main - app diff --git a/.gitignore b/.gitignore index 035a5af..e07ccd3 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ __pycache__/ *.py[cod] *$py.class +.idea/ # C extensions *.so @@ -170,3 +171,4 @@ cython_debug/ # PyPI configuration file .pypirc +app/.env