Skip to content

Commit cf4227f

Browse files
committed
ci: add drone config file
1 parent ac35cd8 commit cf4227f

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

.drone.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
kind: pipeline
2+
type: docker
3+
name: default
4+
5+
steps:
6+
- name: test:all
7+
image: cirrusci/flutter:stable
8+
commands:
9+
- PATH=$PATH:$HOME/.pub-cache/bin
10+
- flutter doctor
11+
- flutter pub global activate melos
12+
- melos bs
13+
- melos run test:all

packages/native_crypto/example/lib/pointycastle/aes_gcm.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@
33
// -----
44
// File: aes_gcm.dart
55
// Created Date: 24/05/2022 16:34:54
6-
// Last Modified: 24/05/2022 17:15:22
6+
// Last Modified: 27/05/2022 17:36:31
77
// -----
88
// Copyright (c) 2022
99

10+
// ignore_for_file: implementation_imports
11+
1012
import 'dart:typed_data';
1113

1214
import 'package:pointycastle/export.dart';

0 commit comments

Comments
 (0)