Files
starter-workflows/ci/dart.yml
T

23 lines
346 B
YAML
Raw Normal View History

2020-11-25 18:16:14 +00:00
name: Dart CI
2020-03-17 11:17:19 +00:00
on:
push:
2020-07-14 18:11:40 +00:00
branches: [ $default-branch ]
2020-03-17 11:17:19 +00:00
pull_request:
2020-07-14 18:11:40 +00:00
branches: [ $default-branch ]
2020-03-17 11:17:19 +00:00
jobs:
build:
2020-11-25 18:16:14 +00:00
2020-03-17 11:17:19 +00:00
runs-on: ubuntu-latest
container:
image: google/dart:latest
steps:
2020-11-25 18:16:14 +00:00
- uses: actions/checkout@v2
- name: Install dependencies
run: pub get
- name: Run tests
run: pub run test