Show the renderer in drawer #88
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Static Analysis | |
on: | |
push: | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
static-analysis: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: subosito/flutter-action@v2 | |
- name: Pub get | |
run: flutter pub get | |
- name: Format | |
run: dart format . --set-exit-if-changed | |
- name: Analyze | |
run: dart analyze | |
# - name: Embedme | |
# run: | | |
# npm install embedme | |
# npx embedme README.md --verify | |
- name: Build runner | |
run: | | |
flutter pub run build_runner build --delete-conflicting-outputs | |
git diff --exit-code | |
# - name: Test | |
# run: dart test | |
# - name: Pana | |
# run: | | |
# flutter pub global activate pana | |
# pana --no-warning --exit-code-threshold 0 |