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