Sfoglia il codice sorgente

Create dart.yml

integrate with github actions
master
Wito Chandra 6 anni fa
committed by GitHub
parent
commit
8ac48d432b
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: 4AEE18F83AFDEB23
1 ha cambiato i file con 19 aggiunte e 0 eliminazioni
  1. +19
    -0
      .github/workflows/dart.yml

+ 19
- 0
.github/workflows/dart.yml Vedi File

@@ -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

Caricamento…
Annulla
Salva