Skip to content

Commit

Permalink
feat(dart): Add build check for Dart (#886)
Browse files Browse the repository at this point in the history
* feat(dart): Add build check for Dart

* feat(dart): Add dart analyze to check

* fix(dart): remove dart analyze

* feat(dart): Ignore unused variable and add dart analyze
  • Loading branch information
gvenusleo committed Oct 25, 2023
1 parent d26e811 commit a8b2350
Show file tree
Hide file tree
Showing 6 changed files with 83 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/dart.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# This workflow will install Dart SDK, run format and build with Dart

name: Dart

on:
push:
branches: ["main"]
paths: ["codes/dart/**/*.dart"]
pull_request:
branches: ["main"]
paths: ["codes/dart/**/*.dart"]
workflow_dispatch:

permissions:
contents: read

jobs:
build:
name: Dart ${{ matrix.dart-sdk }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
dart-sdk: [stable, beta, dev]
steps:
- uses: actions/checkout@v3
- name: Set up Dart ${{ matrix.dart-sdk }}
uses: dart-lang/setup-dart@v1
with:
sdk: ${{ matrix.dart-sdk}}
- name: Run format
run: dart format codes/dart
- name: Run analyze
run: dart analyze codes/dart
- name: Run build
run: dart codes/dart/build.dart
39 changes: 39 additions & 0 deletions codes/dart/build.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
import 'dart:io';

void main() {
Directory foldPath = Directory('codes/dart/');
List<FileSystemEntity> files = foldPath.listSync();
int totalCount = 0;
int errorCount = 0;
for (var file in files) {
if (file.path.endsWith('build.dart')) continue;
if (file is File && file.path.endsWith('.dart')) {
totalCount++;
try {
Process.runSync('dart', [file.path]);
} catch (e) {
errorCount++;
print('Error: $e');
print('File: ${file.path}');
}
} else if (file is Directory) {
List<FileSystemEntity> subFiles = file.listSync();
for (var subFile in subFiles) {
if (subFile is File && subFile.path.endsWith('.dart')) {
totalCount++;
try {
Process.runSync('dart', [subFile.path]);
} catch (e) {
errorCount++;
print('Error: $e');
print('File: ${file.path}');
}
}
}
}
}

print('===== Build Complete =====');
print('Total: $totalCount');
print('Error: $errorCount');
}
2 changes: 2 additions & 0 deletions codes/dart/chapter_array_and_linkedlist/array.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
* Author: Jefferson (JeffersonHuang77@gmail.com)
*/

// ignore_for_file: unused_local_variable

import 'dart:math';

/* 随机访问元素 */
Expand Down
2 changes: 2 additions & 0 deletions codes/dart/chapter_array_and_linkedlist/list.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
* Author: Jefferson (JeffersonHuang77@gmail.com)
*/

// ignore_for_file: unused_local_variable

/* Driver Code */
void main() {
/* 初始化列表 */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
* Author: Jefferson (JeffersonHuang77@gmail.com)
*/

// ignore_for_file: unused_local_variable

import 'dart:collection';
import '../utils/list_node.dart';
import '../utils/print_util.dart';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
* Author: Jefferson (JeffersonHuang77@gmail.com)
*/

// ignore_for_file: unused_local_variable

/* 常数阶 */
int constant(int n) {
int count = 0;
Expand Down

0 comments on commit a8b2350

Please sign in to comment.