Browse Source
Create dart.yml
integrate with github actions
master
Wito Chandra
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
19 additions and
0 deletions
-
.github/workflows/dart.yml
|
|
|
@@ -0,0 +1,19 @@ |
|
|
|
name: Dart CI |
|
|
|
|
|
|
|
on: |
|
|
|
push: |
|
|
|
branches: [ master ] |
|
|
|
pull_request: |
|
|
|
branches: [ master ] |
|
|
|
|
|
|
|
jobs: |
|
|
|
build: |
|
|
|
runs-on: ubuntu-latest |
|
|
|
container: |
|
|
|
image: google/dart:latest |
|
|
|
steps: |
|
|
|
- uses: actions/checkout@v2 |
|
|
|
- name: Install dependencies |
|
|
|
run: pub get |
|
|
|
- name: Run tests |
|
|
|
run: pub run test |