From 42850d1d55ed2ea413c06696c3bbc7fee2310e42 Mon Sep 17 00:00:00 2001 From: Herbert Poul Date: Tue, 27 Aug 2019 19:45:36 +0200 Subject: [PATCH] creating dart CI action (ie. playing around with 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 0000000..2e2e39c --- /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