Wito Chandra
6 vuotta sitten
committed by
GitHub
vanhempi
commit
8ac48d432b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 muutettua tiedostoa jossa
19 lisäystä ja
0 poistoa
-
.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 |