From caeaab51476e4081bd1e51af214e0b45c82b5767 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 11:08:21 +0000 Subject: [PATCH] Initial upload with CI/CD workflow --- .gitea/workflows/update-deps.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .gitea/workflows/update-deps.yml diff --git a/.gitea/workflows/update-deps.yml b/.gitea/workflows/update-deps.yml new file mode 100644 index 0000000..996e41a --- /dev/null +++ b/.gitea/workflows/update-deps.yml @@ -0,0 +1,21 @@ +name: Update-Dependencies + +on: + schedule: + - cron: '0 0 * * 0' + workflow_dispatch: + +jobs: + update-deps: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: '3.11' + - name: Update dependencies + run: | + pip install pip-tools + pip-compile requirements.in + pip-compile --output-file=requirements-dev.txt requirements-dev.in