Skip to content

Commit c06a06f

Browse files
committed
feat: Add pipeline for catalyst_builder_container
1 parent 6d9b0df commit c06a06f

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/dart.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,27 @@ jobs:
6161

6262
- name: Run tests
6363
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

Comments
 (0)