feat: Add storage packages with minio/s3 support #23
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: Code Quality | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| analyze: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup Dart | |
| uses: dart-lang/setup-dart@v1 | |
| with: | |
| sdk: 'stable' | |
| - name: Install DPK | |
| run: dart pub global activate dpk | |
| - name: Run dpk get | |
| run: dpk get | |
| - name: Run code generation on example app | |
| run: dpk run example:build | |
| - name: Analyze | |
| run: dpk run analyze | |
| format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup Dart | |
| uses: dart-lang/setup-dart@v1 | |
| with: | |
| sdk: 'stable' | |
| - name: Install DPK | |
| run: dart pub global activate dpk | |
| - name: Run dpk get | |
| run: dpk get | |
| - name: Format | |
| run: dpk run format |