Update Flutter version in CI workflows to avoid lint errors #77
Workflow file for this run
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
name: CI for iOS implementation package | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
paths: | |
- 'flutter_custom_tabs_ios/**' | |
- '.github/workflows/ios_implementation_package.yml' | |
- '!**.md' | |
pull_request: | |
paths: | |
- 'flutter_custom_tabs_ios/**' | |
- '.github/workflows/ios_implementation_package.yml' | |
- '!**.md' | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_16.1.app | |
jobs: | |
build: | |
runs-on: macos-15 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
# This workflow is designed to avoid lint errors in Flutter version 3.27.0 and later. | |
# ref. https://github.com/flutter/flutter/issues/159739 | |
flutter-version: 3.24.0 | |
- uses: irgaly/setup-mint@v1 | |
with: | |
mint-directory: ./flutter_custom_tabs_ios | |
- name: Get flutter dependencies | |
run: flutter pub get | |
working-directory: ./flutter_custom_tabs_ios | |
- name: Check for any formatting issues in the code | |
run: dart format -o none --set-exit-if-changed $(find ./lib ./test -name "*.dart" -not -name "*.*g.dart") | |
working-directory: ./flutter_custom_tabs_ios | |
- name: Statically analyze the Dart code for any errors | |
run: flutter analyze . | |
working-directory: ./flutter_custom_tabs_ios | |
- name: Statically analyze the Swift code for any errors | |
run: make lint | |
working-directory: ./flutter_custom_tabs_ios | |
- name: Run flutter unit tests | |
run: flutter test | |
working-directory: ./flutter_custom_tabs_ios | |
- name: Build example iOS app | |
run: flutter build ios --no-codesign | |
working-directory: ./flutter_custom_tabs_ios/example | |
- name: Run iOS unit tests | |
run: make test | |
working-directory: ./flutter_custom_tabs_ios/example |