-
-
Notifications
You must be signed in to change notification settings - Fork 123
46 lines (38 loc) · 1.2 KB
/
code_generation.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: Check Code Generation
on:
pull_request:
branches: [main]
paths:
- '.github/workflows/code_generation.yml'
- 'packages/generator/bin/**'
- 'packages/generator/lib/**'
- 'packages/generator/analysis_options.yaml'
- 'packages/generator/pubspec.yaml'
push:
branches: [main]
paths:
- '.github/workflows/code_generation.yml'
- 'packages/generator/bin/**'
- 'packages/generator/lib/**'
- 'packages/generator/analysis_options.yaml'
- 'packages/generator/pubspec.yaml'
jobs:
check_generation:
runs-on: windows-2019
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v4
- name: 🎯 Setup Dart
uses: dart-lang/setup-dart@v1
- name: 📦 Install Workspace Dependencies
run: dart pub get
- name: 📦 Install package:win32 Dependencies
run: dart pub get
working-directory: packages/win32
- name: 📦 Install package:generator Dependencies
run: dart pub get
working-directory: packages/generator
- name: 🚀 Run Code Generation
run: tools\generate --no-test
- name: 🔍 Verify Code Generation
run: git diff --exit-code