diff --git a/.github/workflows/analyze-format.yml b/.github/workflows/analyze-format.yml index 66c42bc..563b801 100644 --- a/.github/workflows/analyze-format.yml +++ b/.github/workflows/analyze-format.yml @@ -14,6 +14,22 @@ env: flutter_version: 3.13.6 jobs: + check-licenses: + runs-on: ubuntu-22.04 + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Setup Flutter + uses: subosito/flutter-action@v2 + with: + flutter-version: ${{ env.flutter_version }} + channel: 'stable' + cache: true + + - name: Check format + run: dart run scripts/check_license.dart + analyze-format: runs-on: ubuntu-22.04 steps: