Skip to content

Commit 613e6d5

Browse files
committed
analyze e2e tests separately
1 parent d1eff8a commit 613e6d5

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

.github/workflows/flutter.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,13 @@ jobs:
4040
- name: Analyze
4141
run: dart analyze
4242

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+
4350
test:
4451
runs-on: ${{ matrix.runner }}
4552
env:

analysis_options.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ analyzer:
2121
exclude:
2222
- lib/src/archive
2323

24+
# separate project with additional dependencies not contained
25+
# in the root pubspec
26+
- e2e
2427
# For more information about the core and recommended set of lints, see
2528
# https://dart.dev/go/core-lints
2629

0 commit comments

Comments
 (0)