No Description

pr.yml 467B

12345678910111213141516171819202122
  1. name: PR_CI
  2. on: [pull_request]
  3. jobs:
  4. test:
  5. name: Test on ${{ matrix.os }}
  6. runs-on: ${{ matrix.os }}
  7. strategy:
  8. matrix:
  9. os: [ubuntu-latest]
  10. steps:
  11. - uses: actions/checkout@v1
  12. - uses: actions/setup-java@v1
  13. with:
  14. java-version: '12.x'
  15. - uses: subosito/flutter-action@v1
  16. with:
  17. flutter-version: '1.9.1+hotfix.6'
  18. - run: flutter pub get
  19. - run: flutter analyze lib example/lib