Skip to content

Commit f29d5d0

Browse files
committed
Initial commit.
1 parent 3b07713 commit f29d5d0

File tree

1 file changed

+44
-0
lines changed

1 file changed

+44
-0
lines changed

.github/workflows/dart.yml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# This workflow uses actions that are not certified by GitHub.
2+
# They are provided by a third-party and are governed by
3+
# separate terms of service, privacy policy, and support
4+
# documentation.
5+
6+
name: Dart
7+
8+
on:
9+
push:
10+
branches: [ main ]
11+
paths:
12+
- '**.dart'
13+
14+
pull_request:
15+
branches: [ main ]
16+
paths:
17+
- '**.dart'
18+
19+
workflow_dispatch:
20+
21+
jobs:
22+
build:
23+
runs-on: ubuntu-latest
24+
25+
steps:
26+
- uses: actions/checkout@v2
27+
28+
# Note: This workflow uses the latest stable version of the Dart SDK.
29+
# You can specify other versions if desired, see documentation here:
30+
# https://github.com/dart-lang/setup-dart/blob/main/README.md
31+
- uses: dart-lang/setup-dart@v1
32+
33+
- name: generic_enum
34+
working_directory: generic_enum
35+
run: tool/actions.sh
36+
37+
- name: generic_enum_builder
38+
working-directory: generic_enum_builder
39+
run: tool/actions.sh
40+
41+
- name: generic_enum_example
42+
working-directory: generic_enum_example
43+
run: tool/actions.sh
44+

0 commit comments

Comments
 (0)