Skip to content

Commit d452210

Browse files
committed
Merge branch 'master' of github.com:Tecode/flutter_book
2 parents 0404c20 + 35c9fa8 commit d452210

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/dart.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Dart CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
container:
11+
image: google/dart:latest
12+
13+
steps:
14+
- uses: actions/checkout@v1
15+
- name: Install dependencies
16+
run: pub get
17+
- name: Run tests
18+
run: pub run test

0 commit comments

Comments
 (0)