Skip to content

Merge pull request #129 from InnHub-Ltd/wakelock_plus #71

Merge pull request #129 from InnHub-Ltd/wakelock_plus

Merge pull request #129 from InnHub-Ltd/wakelock_plus #71

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
check-format:
name: Check format using flutter format
runs-on: ubuntu-latest
container: cirrusci/flutter:stable
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Check format
run: flutter format --set-exit-if-changed .
lint:
name: Check lints
runs-on: ubuntu-latest
container: cirrusci/flutter:stable
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Get dependencies
run: flutter pub get
- name: Lint using flutter analyze
run: flutter analyze