diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..0f2f2a6 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,13 @@ +kind: pipeline +type: docker +name: default + +steps: +- name: test:all + image: cirrusci/flutter:stable + commands: + - PATH=$PATH:$HOME/.pub-cache/bin + - flutter doctor + - flutter pub global activate melos + - melos bs + - melos run test:all \ No newline at end of file diff --git a/packages/native_crypto/example/lib/pointycastle/aes_gcm.dart b/packages/native_crypto/example/lib/pointycastle/aes_gcm.dart index a0aa0be..967c384 100644 --- a/packages/native_crypto/example/lib/pointycastle/aes_gcm.dart +++ b/packages/native_crypto/example/lib/pointycastle/aes_gcm.dart @@ -3,10 +3,12 @@ // ----- // File: aes_gcm.dart // Created Date: 24/05/2022 16:34:54 -// Last Modified: 24/05/2022 17:15:22 +// Last Modified: 27/05/2022 17:36:31 // ----- // Copyright (c) 2022 +// ignore_for_file: implementation_imports + import 'dart:typed_data'; import 'package:pointycastle/export.dart';