Skip to content

Commit

Permalink
Update dart.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
asjqkkkk authored Aug 28, 2019
1 parent 5f59a99 commit 2091df2
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/dart.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Dart CI

on: [push]

jobs:
test:

runs-on: ubuntu-latest

container:
image: google/dart:latest

steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: pub get
- name: Run tests
run: pub run test

build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Install dependencies
run: pub get
- name: Build apk
run: flutter build apk --target-platform android-arm --split-per-abi

0 comments on commit 2091df2

Please sign in to comment.