소스 검색

Create dart.yml

integrate with github actions
master
Wito Chandra 6 년 전
committed by GitHub
부모
커밋
8ac48d432b
No known key found for this signature in database 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

불러오는 중...
취소
저장