From 73899be332b9156d31b05b4f459ddddede3915cd Mon Sep 17 00:00:00 2001 From: Mattia Date: Thu, 20 Feb 2020 20:57:08 +0100 Subject: [PATCH] Create dart.yml --- .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 0000000..873e2f7 --- /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@v2 + - name: Install dependencies + run: pub get + - name: Run tests + run: pub run test