feat: Update pubspec lock files #160
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: test | |
| on: | |
| push: | |
| branches: [ master, staging, dev ] | |
| pull_request: | |
| branches: [ master, staging, dev ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - uses: actions/setup-java@v1 | |
| with: | |
| java-version: '12.x' | |
| - uses: subosito/flutter-action@v1 | |
| with: | |
| channel: 'stable' | |
| - name: Exclude Example application | |
| run: rm -rf example | |
| - name: Verify formatting | |
| run: dart format --output=none --set-exit-if-changed . | |
| - name: Install dependencies | |
| run: flutter pub get | |
| - name: Analyze project source | |
| run: flutter analyze lib/ | |
| - name: Run tests | |
| run: flutter test lib/ |