From 8ac48d432ba35ef54f9386d6e5d80d7aab561105 Mon Sep 17 00:00:00 2001 From: Wito Chandra Date: Wed, 12 Aug 2020 00:50:23 +0700 Subject: [PATCH] Create dart.yml integrate with github actions --- .github/workflows/dart.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/dart.yml diff --git a/.github/workflows/dart.yml b/.github/workflows/dart.yml new file mode 100644 index 0000000..cfd5a3a --- /dev/null +++ b/.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