examples
1 parent 0358abb commit 4f10a93Copy full SHA for 4f10a93
2 files changed
.github/workflows/examples.yaml
@@ -0,0 +1,25 @@
1
+name: examples
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches:
7
+ - main
8
+ - 'release/**'
9
+ paths:
10
+ - 'examples/**/*.dart'
11
+ - 'examples/**/*.yaml'
12
+ - .github/workflows/examples.yaml
13
+ release:
14
+ types: [published]
15
16
+# Matrix for example names
17
+matrix:
18
+ example: [ base ]
19
20
+jobs:
21
+ dart:
22
+ name: "${{ matrix.example }}"
23
+ uses: ./.github/workflows/_base-dart.yaml
24
+ with:
25
+ path: "${{ github.workspace }}/examples/${{ matrix.example }}"
.github/workflows/package.yaml
@@ -1,4 +1,4 @@
-name: "Package"
+name: "package"
on:
pull_request:
0 commit comments