Skip to content

skip dart analyze

skip dart analyze #53

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Dart CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
format-analyze-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dart-lang/setup-dart@v1
- name: Install dependencies
run: dart pub get
- name: Generate package version
run: dart run build_runner build --delete-conflicting-outputs
- name: Verify formatting
run: dart format --output=none --set-exit-if-changed .
# - name: Analyze project source
# run: dart analyze
- name: Run tests
run: dart test