-
-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add workflow to check code generation
- Loading branch information
1 parent
34ff723
commit 3c24729
Showing
8 changed files
with
54 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
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: 🛠️ Install Melos | ||
run: dart pub global activate melos | ||
|
||
- name: 🚀 Run Code Generation | ||
run: dart pub run melos run generate | ||
|
||
- name: 🔍 Verify Code Generation | ||
run: git diff --exit-code |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# melos_managed_dependency_overrides: win32 | ||
dependency_overrides: | ||
win32: | ||
path: ..\\..\\packages\\win32 | ||
path: ../../packages/win32 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# melos_managed_dependency_overrides: win32 | ||
dependency_overrides: | ||
win32: | ||
path: ..\\..\\packages\\win32 | ||
path: ../../packages/win32 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# melos_managed_dependency_overrides: win32 | ||
dependency_overrides: | ||
win32: | ||
path: ..\\..\\packages\\win32 | ||
path: ../../packages/win32 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# melos_managed_dependency_overrides: win32 | ||
dependency_overrides: | ||
win32: | ||
path: ..\\win32 | ||
path: ../win32 |
This file was deleted.
Oops, something went wrong.