Skip to content

build(deps): bump rexml from 3.2.5 to 3.2.8 in /android #484

build(deps): bump rexml from 3.2.5 to 3.2.8 in /android

build(deps): bump rexml from 3.2.5 to 3.2.8 in /android #484

Workflow file for this run

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