From 99d4e799ec1d17696670aa5866e057dc58894384 Mon Sep 17 00:00:00 2001 From: ScuroNeko Date: Thu, 23 Apr 2026 18:21:14 +0300 Subject: [PATCH] test --- .gitea/workflows/go.yaml | 11 +---------- .gitea/workflows/python.yaml | 14 ++------------ 2 files changed, 3 insertions(+), 22 deletions(-) diff --git a/.gitea/workflows/go.yaml b/.gitea/workflows/go.yaml index 1e2981c..f10bce4 100644 --- a/.gitea/workflows/go.yaml +++ b/.gitea/workflows/go.yaml @@ -4,20 +4,11 @@ on: [push] jobs: GoLint: - runs-on: linux-latest + runs-on: go-latest steps: - name: Check out repository code uses: actions/checkout@v6 - - name: Set up Go - uses: actions/setup-go@v6 - with: - go-version: "1.26" - cache: true - cache-dependency-path: | - go.sum - go.mod - - name: Run golangci-lint uses: golangci/golangci-lint-action@v9 with: diff --git a/.gitea/workflows/python.yaml b/.gitea/workflows/python.yaml index 1d37cac..6f3d9a5 100644 --- a/.gitea/workflows/python.yaml +++ b/.gitea/workflows/python.yaml @@ -7,22 +7,12 @@ on: jobs: python: - runs-on: linux-latest + runs-on: python-latest steps: - name: Check out repository code uses: actions/checkout@v6 - - name: Set up Python - uses: actions/setup-python@v6 - with: - python-version: "3.14" - cache: "pip" - cache-dependency-path: | - requirements.txt - requirements-dev.txt - pyproject.toml - - name: Install dependencies run: | python -V @@ -35,4 +25,4 @@ jobs: run: ruff check . - name: Run tests - run: pytest -q \ No newline at end of file + run: pytest -q