fix: upgrade flutter_ci.yml #24
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
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
name: Flutter | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# 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/master/README.md | |
# - uses: dart-lang/setup-dart@v1 | |
# - uses: dart-lang/setup-dart@9a04e6d73cca37bd455e0608d7e5092f881fd603 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: '12.x' | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
flutter-version: '3.x' | |
# check flutter version | |
- name: Check Flutter Version | |
run: flutter --version | |
# Install dependencies | |
- name: Install dependencies | |
run: flutter pub get | |
# Uncomment this step to verify the use of 'dart format' on each commit. | |
# - name: Verify formatting | |
# run: flutter format --set-exit-if-changed | |
# Consider passing '--fatal-infos' for slightly stricter analysis. | |
- name: Analyze project source | |
run: flutter analyze | |
# 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: flutter test | |
unit-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# 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/master/README.md | |
# - uses: dart-lang/setup-dart@v1 | |
# - uses: dart-lang/setup-dart@9a04e6d73cca37bd455e0608d7e5092f881fd603 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: '12.x' | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
flutter-version: '3.x' | |
# check flutter version | |
- name: Check Flutter Version | |
run: flutter --version | |
# Install dependencies | |
- name: Install dependencies | |
run: flutter pub get | |
# Uncomment this step to verify the use of 'dart format' on each commit. | |
# - name: Verify formatting | |
# run: flutter format --set-exit-if-changed | |
# Consider passing '--fatal-infos' for slightly stricter analysis. | |
- name: Analyze project source | |
run: flutter analyze | |
# 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 unit tests | |
run: flutter test --coverage test/unit_test | |
- name: Generate coverage report | |
run: | | |
flutter pub global activate lcov | |
genhtml coverage/lcov.info -o coverage/html | |
- name: Upload coverage report artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: unit-test-coverage-report | |
path: coverage/html/ | |
widget-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# 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/master/README.md | |
# - uses: dart-lang/setup-dart@v1 | |
# - uses: dart-lang/setup-dart@9a04e6d73cca37bd455e0608d7e5092f881fd603 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: '12.x' | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
flutter-version: '3.x' | |
# check flutter version | |
- name: Check Flutter Version | |
run: flutter --version | |
# Install dependencies | |
- name: Install dependencies | |
run: flutter pub get | |
# Uncomment this step to verify the use of 'dart format' on each commit. | |
# - name: Verify formatting | |
# run: flutter format --set-exit-if-changed | |
# Consider passing '--fatal-infos' for slightly stricter analysis. | |
- name: Analyze project source | |
run: flutter analyze | |
# 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 widget tests | |
run: flutter test --coverage test/widget_test | |
- name: Generate coverage report | |
run: | | |
flutter pub global activate lcov | |
genhtml coverage/lcov.info -o coverage/html | |
- name: Upload coverage report artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: widget-test-coverage-report | |
path: coverage/html/ | |
integration-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# 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/master/README.md | |
# - uses: dart-lang/setup-dart@v1 | |
# - uses: dart-lang/setup-dart@9a04e6d73cca37bd455e0608d7e5092f881fd603 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: '12.x' | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
flutter-version: '3.x' | |
# check flutter version | |
- name: Check Flutter Version | |
run: flutter --version | |
# Install dependencies | |
- name: Install dependencies | |
run: flutter pub get | |
# Uncomment this step to verify the use of 'dart format' on each commit. | |
# - name: Verify formatting | |
# run: flutter format --set-exit-if-changed | |
# Consider passing '--fatal-infos' for slightly stricter analysis. | |
- name: Analyze project source | |
run: flutter analyze | |
# 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 integration tests | |
run: flutter test --coverage test/integration_test | |
# run: flutter test --coverage integration_test | |
- name: Generate coverage report | |
run: | | |
flutter pub global activate lcov | |
genhtml coverage/lcov.info -o coverage/html | |
- name: Upload coverage report artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: integration-test-coverage-report | |
path: coverage/html/ | |
golden-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# 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/master/README.md | |
# - uses: dart-lang/setup-dart@v1 | |
# - uses: dart-lang/setup-dart@9a04e6d73cca37bd455e0608d7e5092f881fd603 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: '12.x' | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
flutter-version: '3.x' | |
# check flutter version | |
- name: Check Flutter Version | |
run: flutter --version | |
# Install dependencies | |
- name: Install dependencies | |
run: flutter pub get | |
# Uncomment this step to verify the use of 'dart format' on each commit. | |
# - name: Verify formatting | |
# run: flutter format --set-exit-if-changed | |
# Consider passing '--fatal-infos' for slightly stricter analysis. | |
- name: Analyze project source | |
run: flutter analyze | |
# 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 golden tests | |
run: flutter test --coverage --update-goldens test/golden_test | |
- name: Generate coverage report | |
run: | | |
flutter pub global activate lcov | |
genhtml coverage/lcov.info -o coverage/html | |
- name: Upload coverage report artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: golden-test-coverage-report | |
path: coverage/html/ | |