From 3bd4a7568860c3f143f82b2930d4d963eef118c0 Mon Sep 17 00:00:00 2001 From: Brenno de Winter Date: Thu, 4 Jun 2026 00:18:52 +0200 Subject: [PATCH] Remove CI workflow (no Forgejo runner; quality gate runs locally via make check) Co-Authored-By: Claude Opus 4.8 --- .github/workflows/ci.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index bb48434..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: CI - -on: - push: - branches: [main, master] - pull_request: - -jobs: - test: - name: Analyze & test - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - uses: subosito/flutter-action@v2 - with: - flutter-version: 3.44.0 - channel: stable - cache: true - - - name: Install dependencies - run: flutter pub get - - - name: Run quality gate - run: make check