build(deps): bump rexml from 3.2.5 to 3.2.8 in /android #484
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 | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
platform: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.platform }} | |
timeout-minutes: 40 | |
steps: | |
# Setup Java environment in order to build the Android app. | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: "12.x" | |
# Setup the flutter environment. | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: "stable" | |
# Clean pub cache | |
- run: flutter pub cache clean -f | |
# Set git core.longpaths to true | |
- if: ${{ matrix.platform == 'windows-latest'}} | |
run: git config --system core.longpaths true | |
# Get flutter dependencies. | |
- run: flutter pub get | |
# Run build runner to generate dart files | |
- run: flutter packages pub run build_runner build --delete-conflicting-outputs | |
# Check for any formatting issues in the code. | |
- run: dart format --set-exit-if-changed . | |
# Statically analyze the Dart code for any errors. | |
- run: flutter analyze . | |
# Run tests for our flutter project. | |
- run: flutter test --coverage | |
# Sends test coverage to coveralls | |
- name: Coveralls | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
flag-name: run-${{ matrix.platform }} | |
parallel: true | |
# Build apk. | |
- run: flutter build apk | |
# Build ios | |
- name: Run ios build | |
if: ${{ matrix.platform == 'macos-latest'}} | |
run: | | |
rm ios/Podfile.lock | |
flutter build ios --release --no-codesign | |
# Upload generated apk to the artifacts. | |
- uses: actions/upload-artifact@v1 | |
with: | |
name: release-apk | |
path: build/app/outputs/apk/release/app-release.apk | |
finish: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Coveralls | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
parallel-finished: true |