Create dart.yml

This commit is contained in:
Mattia 2020-02-20 20:57:08 +01:00 committed by GitHub
parent 9d1243dd97
commit 73899be332
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 0 deletions

18
.github/workflows/dart.yml vendored Normal file
View File

@ -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