worldhopper/.forgejo/workflows/pr.yml
Felipe M. 0e15ed6622
All checks were successful
Release / build (push) Successful in 11m6s
fix: set git safe.directory before flutter-action install
2026-04-07 13:36:59 +02:00

23 lines
562 B
YAML

name: PR
on:
pull_request:
jobs:
lint:
runs-on: docker
container:
image: git.nakama.town/fmartingr/ci-images/ci-base:1.0.0
steps:
- uses: actions/checkout@v6
- run: git config --global --add safe.directory '*'
- name: Install Flutter
uses: actions/flutter-action@v2
with:
channel: stable
- name: Lint
run: |
flutter pub get
dart format --set-exit-if-changed .
flutter pub run build_runner build --delete-conflicting-outputs
flutter analyze