ソースを参照

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

読み込み中…
キャンセル
保存