Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
fix: ci
  • Loading branch information
felangel committed Jan 31, 2021
commit 447488dd892e10e6764fadf08a7f9987b86ebc72
6 changes: 3 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ jobs:
build:
runs-on: ubuntu-latest
container:
image: google/dart:2.9.3
image: google/dart:2.10.0
steps:
- uses: actions/checkout@v2

- name: Install Dependencies
run: pub get

- name: Format
run: dartfmt --dry-run --set-exit-if-changed .
run: dart format --set-exit-if-changed .

- name: Analyze
run: dartanalyzer --fatal-infos --fatal-warnings .
run: dart analyze --fatal-infos --fatal-warnings .

- name: Verify Build
run: pub run test --run-skipped -t pull-request-only
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: 0.0.1-dev.0
homepage: https://github.com/VeryGoodOpenSource/very_good_cli

environment:
sdk: ">=2.9.3 <3.0.0"
sdk: ">=2.10.0 <3.0.0"

dependencies:
args: ^1.6.0
Expand Down