From a9e0a532977c7f4a1ccd32ac4709404a2a4d8a0e Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Mon, 25 May 2026 13:57:26 +0200 Subject: [PATCH] reverted --- .gitea/workflows/pull_request.yaml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/pull_request.yaml b/.gitea/workflows/pull_request.yaml index b942016..78d3269 100644 --- a/.gitea/workflows/pull_request.yaml +++ b/.gitea/workflows/pull_request.yaml @@ -6,12 +6,21 @@ on: jobs: lint: runs-on: ubuntu-latest - container: - image: ghcr.io/cirruslabs/flutter:stable steps: - name: Checkout code uses: actions/checkout@v4 + # Required for Flutter action + - name: Install jq + run: | + apt-get update + apt-get install -y jq + + - name: Set up Flutter + uses: subosito/flutter-action@v2 + with: + channel: stable + - name: Get dependencies run: | git config --global --add safe.directory '*'