feat: add support for required initializer calls in constructors #5
This file contains hidden or 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: Linting | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| lint: | |
| name: Lint Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 📚 Checkout code | |
| uses: actions/checkout@v3 | |
| - name: 🐦 Set up Dart | |
| uses: dart-lang/setup-dart@v1 | |
| with: | |
| sdk: stable | |
| - name: 📦 Install dependencies | |
| run: dart pub get | |
| - name: 🔍 Dart Analyze | |
| uses: ValentinVignal/action-dart-analyze@v0.17 | |
| with: | |
| fail-on: format |