worldhopper/.forgejo/workflows/pr.yml
Felipe M. 4f9ba1efc8
All checks were successful
PR / lint (pull_request) Successful in 5m0s
fix: typo in checkout action reference in PR workflow
2026-04-07 12:45:02 +02:00

23 lines
559 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
- name: Install Flutter
uses: actions/flutter-action@v2
with:
channel: stable
- name: Lint
run: |
git config --global --add safe.directory '*'
flutter pub get
dart format --set-exit-if-changed .
flutter pub run build_runner build --delete-conflicting-outputs
flutter analyze