From fcacef809a4624c038f82aaf2a1bab02029ecd63 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 11:08:09 +0000 Subject: [PATCH] Initial upload with CI/CD workflow --- .gitea/workflows/integration.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .gitea/workflows/integration.yml diff --git a/.gitea/workflows/integration.yml b/.gitea/workflows/integration.yml new file mode 100644 index 0000000..fdcf8bf --- /dev/null +++ b/.gitea/workflows/integration.yml @@ -0,0 +1,25 @@ +name: Integration + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + integration: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: '3.11' + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt + pip install pytest + - name: Run integration tests + run: | + python -m pytest tests/ -k integration -v