From cf4227fb582a7487194dc51d4631919c296790a8 Mon Sep 17 00:00:00 2001 From: Hugo Pointcheval Date: Fri, 27 May 2022 18:18:58 +0200 Subject: [PATCH] ci: add drone config file --- .drone.yml | 13 +++++++++++++ .../example/lib/pointycastle/aes_gcm.dart | 4 +++- 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 .drone.yml 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';