We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d9b0df commit c06a06fCopy full SHA for c06a06f
1 file changed
.github/workflows/dart.yml
@@ -61,3 +61,27 @@ jobs:
61
62
- name: Run tests
63
run: dart test
64
+ test_catalyst_builder_container:
65
+ runs-on: ubuntu-latest
66
+ defaults:
67
+ run:
68
+ working-directory: packages/catalyst_builder_container
69
+
70
+ steps:
71
+ - uses: actions/checkout@v2
72
73
+ - uses: dart-lang/setup-dart@v1
74
+ with:
75
+ sdk: 'stable'
76
77
+ - name: Install dependencies
78
+ run: dart pub get
79
80
+ - name: Verify formatting
81
+ run: dart format --output=none --set-exit-if-changed lib
82
83
+ - name: Analyze project source
84
+ run: dart analyze lib
85
86
+ - name: Run tests
87
+ run: dart test
0 commit comments