瀏覽代碼

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

Loading…
取消
儲存