Skip to content

Merge pull request #265 from GeekyAnts/main #222

Merge pull request #265 from GeekyAnts/main

Merge pull request #265 from GeekyAnts/main #222

Workflow file for this run

name: GeekyAnts Flutter Gauges Checks
on:
push :
branches:
- stable
- main
pull_request:
branches:
- main
jobs:
build:
# This job will run on ubuntu virtual machine
if: github.ref != 'refs/heads/stable'
runs-on: ubuntu-latest
steps:
# Setup Java environment in order to build the Android app.
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: '12.x'
# Setup the flutter environment.
- uses: subosito/flutter-action@v1
with:
channel: 'stable' # 'dev', 'alpha', default to: 'stable'
# flutter-version: '1.12.x' # you can also specify exact version of flutter
# Get flutter dependencies.
- run: flutter pub get
# 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 widget tests for our flutter project.
- run: flutter test
# Pub dry run.
- run: flutter pub publish --dry-run
publishing:
if: github.ref == 'refs/heads/stable'
runs-on: ubuntu-latest
steps:
- name: 'Checkout'
uses: actions/checkout@main # required!
- name: 'GeekyAnts Gauges Flutter'
uses: k-paxian/dart-package-publisher@master
with:
credentialJson: ${{ secrets.CREDENTIALLS_JSON }}