The QR Code Scanner package for Appeto SDK.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

25 regels
532 B

  1. name: dart
  2. on: [push, pull_request]
  3. jobs:
  4. build:
  5. runs-on: ubuntu-latest
  6. steps:
  7. - uses: actions/checkout@v2
  8. - uses: actions/setup-java@v2.5.0
  9. with:
  10. distribution: 'temurin'
  11. java-version: '11'
  12. - uses: subosito/flutter-action@v2.3.0
  13. - name: Version
  14. run: flutter doctor -v
  15. - name: Install dependencies
  16. run: flutter pub get
  17. - name: Format
  18. run: flutter format -n --set-exit-if-changed .
  19. - name: Linter
  20. run: flutter analyze