Merge pull request #197 from droibit/feature/prepare_for_next #48
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/**' | |
- '!**.md' | |
pull_request: | |
paths: | |
- 'flutter_custom_tabs_ios/**' | |
- '!**.md' | |
jobs: | |
build: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
- 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 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 |