Kaynağa Gözat
Create dart.yml
integrate with github actions
master
Wito Chandra
6 yıl önce
committed by
GitHub
ebeveyn
işleme
8ac48d432b
Veri tabanında bu imza için bilinen anahtar bulunamadı
GPG Anahtar Kimliği: 4AEE18F83AFDEB23
1 değiştirilmiş dosya ile
19 ekleme ve
0 silme
-
.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 |