Skip to content

Commit

Permalink
Fix comments for the actions
Browse files Browse the repository at this point in the history
  • Loading branch information
rydmike committed Oct 26, 2022
1 parent 9dfd5a4 commit 4de9772
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 20 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/analyze.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# This GitHub actions runs on pull to master, it:
# - Installs Dart and flutter
# - Uses Flutter beta channel for now, might make a matrix later with other channels included too.
# - Gets package dependencies
# - Runs dart analyze, allows deprecation warnings, we on purpose allow use of deprecated features for now.
# - Show outdated packages, just added for info.
# - Verify that dart format is used by all committed code, fails if not. Controversial but pub.dev penalizes you if
# dart format is not used.
# This GitHub analyzes action, runs on pull to master.
# - Installs Dart and flutter.
# - Shows used dart and flutter version.
# - Enables flutter web.
# - Gets package dependencies.
# - Run dart analyze.
# - Show outdated packages.
# - Verify that dart format is used by all committed code, fail if not.
name: Analyze ThemeDemo
on:
push:
Expand Down
20 changes: 8 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
# This GitHub build and deploy runs on master publish, it:
# - Installs Dart and flutter
# - Uses Flutter beta channel for now.
# - Enables flutter web
# - Gets package dependencies
# - Runs dart analyze.
# - Show outdated packages, just added for info.
# - Verify that dart format is used by all committed code, fails if not. Controversial but pub.dev penalizes you if
# dart format is not used.
# - Upload code coverage output to Codecov for analysis.
# - Install linux rpl tool. It is used to automate the needed change of a line in index.html.
# This GitHub build and deploy, runs on master publish.
# - Installs Dart and flutter.
# - Shows used dart and flutter version.
# - Enables flutter web.
# - Gets package dependencies.
# - Run dart analyze.
# - Show outdated packages.
# - Verify that dart format is used by all committed code, fail if not.
# - Build default and web example apps for FlexColorPicker.
# - Flutter clean.
# - Flutter build web app, in release mode and with CanvasKit renderer.
Expand Down Expand Up @@ -59,7 +56,6 @@ jobs:
- name: Verify that Dart formatting is used, fail if not
run: dart format --output=none --set-exit-if-changed .

# Build ThemeDemo Web app
- name: WEB release build using CanvasKit
run: flutter build web --web-renderer=canvaskit --base-href "/themedemo/" --release --target=lib/main.dart

Expand Down

0 comments on commit 4de9772

Please sign in to comment.