We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57d2b01 commit c4ad261Copy full SHA for c4ad261
.travis.yml
@@ -0,0 +1,7 @@
1
+language: dart
2
+
3
+dart:
4
+ - dev
5
+ - stable
6
7
+script: ./tool/travis.sh
lib/src/generate/build.dart
@@ -5,7 +5,6 @@ import 'dart:async';
import 'dart:convert';
import 'dart:io';
8
-import 'package:glob/glob.dart';
9
import 'package:path/path.dart' as path;
10
import 'package:yaml/yaml.dart';
11
tool/travis.sh
@@ -9,8 +9,7 @@ set -e
# Verify that the libraries are error free.
dartanalyzer --fatal-warnings \
12
- lib/sample.dart \
13
- test/all_test.dart
+ lib/build.dart
14
15
# Run the tests.
16
pub run test
0 commit comments