Skip to content

Commit

Permalink
fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
alextekartik committed Sep 30, 2024
1 parent 6c35758 commit 2a4f80f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/run_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,5 @@ jobs:
sdk: ${{ matrix.dart }}
- run: dart --version
- run: dart pub get
- run: dart run tool/setup_env.dart
- run: dart run tool/run_ci.dart
9 changes: 9 additions & 0 deletions repo_support/tool/setup_env.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import 'dart:io';
import 'package:process_run/shell_run.dart';

Future main() async {
if (Platform.isLinux) {
// Assuming ubuntu, to run as root, this is mainly for CI
await run('sudo apt-get -y install libsqlite3-0 libsqlite3-dev');
}
}

0 comments on commit 2a4f80f

Please sign in to comment.