Browse Source

update workflow

pull/6/head
Khoren Markosyan 2 years ago
parent
commit
2f91551e40
  1. 52
      .github/workflows/main.yml

52
.github/workflows/main.yml

@ -4,34 +4,34 @@ name: Flutter CI
on: on:
push: push:
branches: branches:
- main - main
jobs: jobs:
build: build:
# This job will run on ubuntu virtual machine # This job will run on ubuntu virtual machine
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
# Setup Java environment in order to build the Android app.
# Setup Java environment in order to build the Android app. - uses: actions/checkout@v3
- uses: actions/checkout@v3.0.2 - uses: actions/setup-java@v3.4.0
- uses: actions/setup-java@v3.4.0 with:
with: java-version: 11
java-version: 11 distribution: temurin
distribution: temurin
# Setup the flutter environment.
# Setup the flutter environment. - uses: subosito/flutter-action@v2
- uses: subosito/flutter-action@v2.4.0 with:
with: channel: "stable"
channel: 'stable' # 'dev', 'alpha', default to: 'stable' cache: true
cache: true
# flutter-version: '1.22.x' # you can also specify exact version of flutter - name: Install dependencies
run: flutter pub get
# Get flutter dependencies.
- run: flutter pub get - name: Verify formatting
run: flutter format .
# Check for any formatting issues in the code.
- run: flutter format . - name: Analyze project source
run: flutter analyze
# Statically analyze the Dart code for any errors.
- run: flutter analyze . # - name: Run tests
# run: dart test

Loading…
Cancel
Save