瀏覽代碼
Create dart.yml
integrate with github actions
master
Wito Chandra
6 年之前
committed by
GitHub
沒有發現已知的金鑰在資料庫的簽署中
GPG Key ID: 4AEE18F83AFDEB23
共有
1 個文件被更改,包括
19 次插入 和
0 次删除
-
.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 |