From 3a8a76231706d5fb2174e9d1e1db87e70da0af40 Mon Sep 17 00:00:00 2001 From: Xavier H Date: Sun, 8 Sep 2019 15:52:21 +0200 Subject: [PATCH] Update dart.yml Setup github actions --- .github/workflows/dart.yml | 18 ++++++++++++++++++ 1 file changed, 18 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 00000000..2e2e39c6 --- /dev/null +++ b/.github/workflows/dart.yml @@ -0,0 +1,18 @@ +name: Dart CI + +on: [push] + +jobs: + build: + + 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