Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add GitHub Action dart-package-analyzer.yml #84

Merged
merged 18 commits into from
Oct 14, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/dart_test_analyze_format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: dart_test_analyze_format
on: [push, pull_request]
jobs:
dart_test_analyze_format:
runs-on: ubuntu-latest
container: google/dart
steps:
- uses: actions/checkout@v2
# - run: dart test # See https://github.com/TheAlgorithms/Dart/issues/88
- run: dart analyze || true # TODO: remove `|| true` when #86 is closed
- run: dart format . || true # TODO: remove `|| true` when #87 is closed
2 changes: 2 additions & 0 deletions DIRECTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@
* [Sol1](https://github.com/TheAlgorithms/Dart/blob/master/project_euler/problem_1/sol1.dart)
* Problem 13
* [Sol13](https://github.com/TheAlgorithms/Dart/blob/master/project_euler/problem_13/sol13.dart)
* Problem 17
* [Sol17](https://github.com/TheAlgorithms/Dart/blob/master/project_euler/problem_17/sol17.dart)
* Problem 2
* [Sol2](https://github.com/TheAlgorithms/Dart/blob/master/project_euler/problem_2/sol2.dart)
* Problem 3
Expand Down