Files
starter-workflows/ci/dart.yml
T
Simon Leier 28ae08ad28 Fix dart workflow
The dart runtime is not installed by default. The action failes with an error.
2019-08-19 02:26:04 +02:00

19 lines
287 B
YAML

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