1 parent d1eff8a commit 613e6d5Copy full SHA for 613e6d5
2 files changed
.github/workflows/flutter.yml
@@ -40,6 +40,13 @@ jobs:
40
- name: Analyze
41
run: dart analyze
42
43
+ - name: Analyze E2E tests
44
+ working-directory: e2e
45
+ run: |
46
+ dart pub get --enforce-lockfile
47
+ dart format --output=none --set-exit-if-changed .
48
+ dart analyze
49
+
50
test:
51
runs-on: ${{ matrix.runner }}
52
env:
analysis_options.yaml
@@ -21,6 +21,9 @@ analyzer:
21
exclude:
22
- lib/src/archive
23
24
+ # separate project with additional dependencies not contained
25
+ # in the root pubspec
26
+ - e2e
27
# For more information about the core and recommended set of lints, see
28
# https://dart.dev/go/core-lints
29
0 commit comments