From 86603659f9647a8b876babeb11783e5668c5ce96 Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 6 May 2026 11:44:17 +0800 Subject: [PATCH] fix(ci): remove github action dependency from gitea workflow --- .gitea/workflows/ci.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 15ce522..679eab3 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -11,14 +11,11 @@ jobs: verify: runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Setup Go - uses: actions/setup-go@v5 - with: - go-version-file: go.mod - cache: true + - name: Verify Go toolchain + run: | + go version + pwd + test -f go.mod - name: Verify formatting run: |