Skip to content

Provider version : Improve code style using lint rules v3.0.1 #78

Provider version : Improve code style using lint rules v3.0.1

Provider version : Improve code style using lint rules v3.0.1 #78

Workflow file for this run

on:
push:
branches:
- provider
name: "Analysis & Build"
jobs:
build:
name: Analysis & Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@v1
with:
flutter-version: '3.13.9'
- run: flutter pub get
- run: flutter analyze
- run: flutter build apk
# - name: Push to Releases
# uses: ncipollo/release-action@v1
# with:
# artifacts: "build/app/outputs/apk/release/app-release.apk"
# tag: v2.0.4
# token: ${{ secrets.TOKEN }}