Skip to content

Commit

Permalink
Merge branch 'release'
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelsetragni committed Sep 25, 2023
2 parents d5514a6 + cb6895c commit 3bea7ce
Show file tree
Hide file tree
Showing 270 changed files with 13,888 additions and 19,412 deletions.
Binary file modified .DS_Store
Binary file not shown.
328 changes: 290 additions & 38 deletions .dart_tool/package_config.json

Large diffs are not rendered by default.

286 changes: 227 additions & 59 deletions .dart_tool/package_config_subset

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion .dart_tool/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.4
3.13.3
51 changes: 31 additions & 20 deletions .github/workflows/dart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,39 +7,50 @@ name: Dart

on:
push:
branches: [ "master", "hotfix", "develop" ]
branches: [ "master", "hotfix", "development" ]
pull_request:
branches: [ "master", "hotfix", "develop" ]
branches: [ "master", "hotfix", "development" ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

# 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
- uses: dart-lang/setup-dart@9a04e6d73cca37bd455e0608d7e5092f881fd603
- id: flutter-action
uses: subosito/flutter-action@v2
with:
channel: 'stable'
- name: Print Flutter configurations
run: |
echo CACHE-PATH=${{ steps.flutter-action.outputs.CACHE-PATH }}
echo CACHE-KEY=${{ steps.flutter-action.outputs.CACHE-KEY }}
echo CHANNEL=${{ steps.flutter-action.outputs.CHANNEL }}
echo VERSION=${{ steps.flutter-action.outputs.VERSION }}
echo ARCHITECTURE=${{ steps.flutter-action.outputs.ARCHITECTURE }}
- name: Clean cache configurations
run: flutter clean

- name: Install dependencies
run: dart pub get
run: flutter pub get

# Uncomment this step to verify the use of 'dart format' on each commit.
- name: Verify formatting
run: dart format --output=none --set-exit-if-changed .
# Disabled due inconsistencies between local and remote execution.
# - name: Verify formatting
# run: dart format --output=none --set-exit-if-changed .

# Consider passing '--fatal-infos' for slightly stricter analysis.
- name: Analyze project source
run: dart analyze
run: flutter analyze --no-fatal-infos

# Your project will need to have tests in test/ and a dependency on
# package:test for this step to succeed. Note that Flutter projects will
# want to change this to 'flutter test'.
- name: Run tests
run: dart test
run: flutter test

- name: Run tests
run: dart test --coverage
- name: Run tests coverage
run: flutter test --coverage

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false
directory: coverage
Loading

0 comments on commit 3bea7ce

Please sign in to comment.