removed check workflow while on flutter master
This commit is contained in:
parent
87fb9c73e1
commit
b35ddcb78e
1 changed files with 30 additions and 29 deletions
59
.github/workflows/check.yml
vendored
59
.github/workflows/check.yml
vendored
|
@ -1,32 +1,33 @@
|
||||||
#name: Quality check
|
name: Quality check
|
||||||
#
|
|
||||||
#on:
|
on:
|
||||||
# push:
|
push:
|
||||||
# branches:
|
branches:
|
||||||
# - develop
|
- develop
|
||||||
#
|
|
||||||
## TODO TLAD run `flutter format -l 1000 .` and fail if any
|
# TODO TLAD run `flutter format -l 1000 .` and fail if any
|
||||||
#
|
|
||||||
#jobs:
|
jobs:
|
||||||
# build:
|
build:
|
||||||
# name: Check code quality.
|
name: Check code quality.
|
||||||
# runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
# steps:
|
steps:
|
||||||
# - uses: subosito/flutter-action@v1
|
- uses: subosito/flutter-action@v1
|
||||||
# with:
|
with:
|
||||||
# channel: stable
|
channel: stable
|
||||||
# flutter-version: '2.0.1'
|
flutter-version: '2.0.1'
|
||||||
#
|
|
||||||
# - name: Clone the repository.
|
- name: Clone the repository.
|
||||||
# uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
#
|
|
||||||
# - name: Get packages for the Flutter project.
|
- name: Get packages for the Flutter project.
|
||||||
# run: flutter pub get
|
run: flutter pub get
|
||||||
#
|
|
||||||
# - name: Update the flutter version file.
|
- name: Update the flutter version file.
|
||||||
# working-directory: ${{ github.workspace }}/scripts
|
working-directory: ${{ github.workspace }}/scripts
|
||||||
# run: ./update_flutter_version.sh
|
run: ./update_flutter_version.sh
|
||||||
#
|
|
||||||
|
# TODO TLAD uncomment when no longer on master channel
|
||||||
# - name: Static analysis.
|
# - name: Static analysis.
|
||||||
# run: flutter analyze
|
# run: flutter analyze
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in a new issue