-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'oxyfalcon-patch-1' of https://github.com/oxyfalcon/fire…
…base_todo into oxyfalcon-patch-1
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Execute Tests on PR | ||
on: | ||
push: | ||
pull_request: | ||
branches: [main] | ||
|
||
jobs: | ||
|
||
runUnitTest: | ||
name: Execute Unit/Widget tests | ||
|
||
runs-on: macos-latest | ||
steps: | ||
|
||
- name: Checkout Code | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup Flutter SDK | ||
uses: subosito/flutter-action@v2 | ||
with: | ||
channel: 'stable' | ||
|
||
- name: Lint | ||
run: dart format --output=none --set-exit-if-changed . | ||
|
||
- name: Pub Upgrade | ||
run: flutter pub upgrade | ||
|
||
# - name: Run Unit Tests / Widget Tests | ||
# run: flutter test |