Delete workflows

This commit is contained in:
Hidenori Matsubayashi
2021-07-16 13:38:29 +09:00
parent 1ef4cda79b
commit 74f833b779
-23
View File
@@ -1,23 +0,0 @@
name: Dart
on:
push:
pull_request:
jobs:
analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Fetch Flutter SDK
run: |
git clone --depth=1 https://github.com/flutter/flutter.git
cd flutter
git fetch --depth=1 https://github.com/flutter/flutter.git `cat ../bin/internal/flutter.version`
git checkout FETCH_HEAD
- name: Install pub dependencies
run: flutter/bin/flutter pub get
- name: Verify formatting
run: flutter/bin/dart format --output=none --set-exit-if-changed lib
- name: Analyze project source
run: flutter/bin/dart analyze --fatal-infos lib