-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make all workflows work on pull requests against main branch
- Loading branch information
1 parent
ca77596
commit a238575
Showing
3 changed files
with
9 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
name: Build | ||
|
||
on: | ||
push: | ||
pull_request: | ||
branches: | ||
- "*" | ||
- main | ||
|
||
jobs: | ||
build: | ||
|
@@ -16,13 +16,12 @@ jobs: | |
- name: Setup Dart SDK | ||
uses: dart-lang/[email protected] | ||
with: | ||
sdk: 'stable' | ||
sdk: "stable" | ||
- name: Install Melos | ||
run: dart pub global activate melos | ||
run: dart pub global activate melos | ||
|
||
- name: Install dependencies | ||
run: dart pub global run melos bootstrap | ||
|
||
- name: Linting | ||
run: dart analyze . | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
name: Upload Coverage | ||
|
||
on: | ||
push: | ||
pull_request: | ||
branches: | ||
- "*" | ||
- main | ||
|
||
jobs: | ||
build: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
name: Run Tests | ||
|
||
on: | ||
push: | ||
pull_request: | ||
branches: | ||
- "*" | ||
- main | ||
|
||
jobs: | ||
build: | ||
|