We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c40deae commit 188a0faCopy full SHA for 188a0fa
.github/workflows/dart_test.yml
@@ -94,3 +94,24 @@ jobs:
94
with:
95
token: ${{secrets.CODECOV_TOKEN}}
96
file: ~/coverage/lcov.info
97
+
98
+ check-build-diff:
99
+ runs-on: ubuntu-latest
100
101
+ needs: get-flutter-version
102
103
+ steps:
104
+ - uses: actions/checkout@v4
105
106
+ - name: Install Flutter
107
+ uses: subosito/flutter-action@v2
108
+ with:
109
+ channel: 'stable'
110
+ flutter-version: ${{ needs.get-flutter-version.outputs.flutter-version }}
111
+ cache: true
112
113
+ - name: Run build_runner
114
+ run: dart run build_runner build -d
115
116
+ - name: Check diff
117
+ run: git diff --exit-code
0 commit comments