浏览代码

Create dart.yml

integrate with github actions
master
Wito Chandra 6 年前
committed by GitHub
父节点
当前提交
8ac48d432b
找不到此签名对应的密钥 GPG 密钥 ID: 4AEE18F83AFDEB23
共有 1 个文件被更改,包括 19 次插入0 次删除
  1. +19
    -0
      .github/workflows/dart.yml

+ 19
- 0
.github/workflows/dart.yml 查看文件

@@ -0,0 +1,19 @@
name: Dart CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

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

正在加载...
取消
保存