From 333dc190205f6a68514fc7b6f6d87d98ce9b63e2 Mon Sep 17 00:00:00 2001 From: Untone Date: Tue, 12 Aug 2025 13:06:53 +0300 Subject: [PATCH] ci-upgrade3 --- .gitea/workflows/main.yml | 22 ++-------------------- 1 file changed, 2 insertions(+), 20 deletions(-) diff --git a/.gitea/workflows/main.yml b/.gitea/workflows/main.yml index 41dc398b..b7f5e0dd 100644 --- a/.gitea/workflows/main.yml +++ b/.gitea/workflows/main.yml @@ -9,29 +9,11 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 - - - name: Install uv - run: | - # Try multiple installation methods for uv - if curl -LsSf https://astral.sh/uv/install.sh | sh; then - echo "uv installed successfully via install script" - elif curl -LsSf https://github.com/astral-sh/uv/releases/latest/download/uv-installer.sh | sh; then - echo "uv installed successfully via GitHub installer" - else - echo "uv installation failed, using pip fallback" - pip install uv - fi - echo "$HOME/.cargo/bin" >> $GITHUB_PATH - - - name: Prepare Environment - run: | - uv --version - python3 --version - name: Install Dependencies run: | - uv run pip install -r requirements.txt - uv run pip install -r requirements.dev.txt + pip install -r requirements.txt + pip install -r requirements.dev.txt - name: Run Tests run: |