Skip to content

Commit

Permalink
build(ci): fix github action settings
Browse files Browse the repository at this point in the history
  • Loading branch information
rultor committed May 14, 2021
1 parent 87dc408 commit 343c3f5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: Flutter CI

# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
# Triggers the workflow on push request events but only for the master branch
push:
branches: [ master ]
pull_request:
Expand Down Expand Up @@ -36,10 +36,10 @@ jobs:
- run: flutter pub get

# Check for any formatting issues in the code.
- run: flutter format --set-exit-if-changed lib/ test/ example/
- run: flutter format --set-exit-if-changed lib/ test/

# Statically analyze the Dart code for any errors.
- run: flutter analyze --no-current-package lib/ test/ example/
- run: flutter analyze --no-current-package lib/ test/

# Run widget tests for our flutter project.
- run: flutter test --no-pub --coverage
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.0.1]

```dart
/*
* @todo #2 needs to release first version.
Expand Down

0 comments on commit 343c3f5

Please sign in to comment.