The QR Code Scanner package for Appeto SDK.
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

25 righe
509 B

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