Skip to content

Commit 4389401

Browse files
Create dart.yml
1 parent 1fd03d2 commit 4389401

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/dart.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Dart CI
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
container:
15+
image: google/dart:latest
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
- name: Install dependencies
20+
run: pub get
21+
working-directory: './integration_tests'
22+
- name: Generate mappers
23+
run: pub run build_runner build
24+
working-directory: './integration_tests'
25+
- name: Run tests
26+
run: pub run test
27+
working-directory: './integration_tests'

0 commit comments

Comments
 (0)