Skip to content

Commit 6027e09

Browse files
committed
Added workflow dispatch button.
1 parent 8065d02 commit 6027e09

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

.github/workflows/dart.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,16 @@ on:
1414
branches: [ main ]
1515
paths:
1616
- '**.dart'
17-
17+
18+
workflow_dispatch:
19+
20+
1821
jobs:
1922
build:
2023
runs-on: ubuntu-latest
2124

2225
steps:
23-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v3
2427

2528
# Note: This workflow uses the latest stable version of the Dart SDK.
2629
# You can specify other versions if desired, see documentation here:
@@ -30,13 +33,13 @@ jobs:
3033
- name: Install dependencies
3134
run: dart pub get
3235

33-
- name: Install deps of researcher
34-
working-directory: example/researcher
35-
run: dart pub get
36+
# - name: Install deps of researcher
37+
# working-directory: example/researcher
38+
# run: dart pub get
3639

37-
- name: Install deps of researcher_builder
38-
working-directory: example/researcher_builder
39-
run: dart pub get
40+
# - name: Install deps of researcher_builder
41+
# working-directory: example/researcher_builder
42+
# run: dart pub get
4043

4144
# Uncomment this step to verify the use of 'dart format' on each commit.
4245
- name: Verify formatting

0 commit comments

Comments
 (0)