From 28ae08ad2845022959150dee05a0a85bceb9b450 Mon Sep 17 00:00:00 2001 From: Simon Leier Date: Mon, 19 Aug 2019 02:26:04 +0200 Subject: [PATCH] Fix dart workflow The dart runtime is not installed by default. The action failes with an error. --- ci/dart.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ci/dart.yml b/ci/dart.yml index e0522a2..408bc91 100644 --- a/ci/dart.yml +++ b/ci/dart.yml @@ -7,6 +7,9 @@ jobs: runs-on: ubuntu-latest + container: + image: google/dart:latest + steps: - uses: actions/checkout@v1 - name: Install dependencies