Skip to content

Commit 1ad52cd

Browse files
Merge pull request #40 from konstantinullrich/feature/#38-Getting-warnings-on-VM-startup-after-running-a-dart-pub-upgrade
Feature/#38 getting warnings on vm startup after running a dart pub upgrade
2 parents 1b606a1 + 166dbfa commit 1ad52cd

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

.github/workflows/dart.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,15 @@ on:
88

99
jobs:
1010
build:
11-
1211
runs-on: ubuntu-latest
13-
14-
container:
15-
image: google/dart:latest
16-
1712
steps:
1813
- uses: actions/checkout@v2
14+
- uses: dart-lang/setup-dart@v1
15+
with:
16+
sdk: stable
17+
1918
- name: Install dependencies
20-
run: pub get
19+
run: dart pub get
2120

2221
- name: Run tests
23-
run: pub run test
22+
run: dart pub run test

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ environment:
99
sdk: '>=2.14.0 <4.0.0'
1010

1111
dependencies:
12-
pointycastle: ^3.6.2
12+
pointycastle: ^3.7.3
1313
asn1lib: ^1.5.0
1414

1515
dev_dependencies:

0 commit comments

Comments
 (0)