Skip to content

fix pipeline

fix pipeline #59

Workflow file for this run

name: tapped_toolkit
on: [push]
# Cancel previous builds by only allowing one concurrent build per ref.
concurrency:
group: tapped_toolkit-${{ github.ref }}
cancel-in-progress: true
jobs:
analyze:
timeout-minutes: 5
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v3
- uses: kuhnroyal/flutter-fvm-config-action@v2
id: fvm-config-action
- uses: subosito/flutter-action@v2
- name: Get all dependencies
run: flutter pub get
- name: analyze app
run: flutter analyze
format:
timeout-minutes: 5
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v3
- uses: kuhnroyal/flutter-fvm-config-action@v2
id: fvm-config-action
- uses: subosito/flutter-action@v2
- name: Get all dependencies
run: flutter pub get
- name: Check formatting
run: find . -name "*.dart" ! -name "*.g.dart" ! -name "*.freezed.dart" ! -path '*/generated/*' ! -path '*/gen/*' | xargs flutter format -n --set-exit-if-changed
test:
timeout-minutes: 5
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v3
- uses: kuhnroyal/flutter-fvm-config-action@v2
id: fvm-config-action
- uses: subosito/flutter-action@v2
- name: Get all dependencies
run: flutter pub get
- name: Check formatting
run: flutter test