소스 검색
Create dart.yml
integrate with github actions
master
Wito Chandra
6 년 전
committed by
GitHub
No known key found for this signature in database
GPG 키 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 |