Explorar el Código

Add Github Actions .yml

flutter-beta
Dominik Spicher hace 6 años
padre
commit
55dc1bf37e
Se han modificado 1 ficheros con 25 adiciones y 0 borrados
  1. +25
    -0
      .github/workflows/dart.yml

+ 25
- 0
.github/workflows/dart.yml Ver fichero

@@ -0,0 +1,25 @@
name: dart

on: [push, pull_request]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@v1
with:
channel: 'stable'
- name: Version
run: flutter doctor -v
- name: Install dependencies
run: flutter pub get
- name: Format
run: dartfmt -n --set-exit-if-changed .
- name: Linter
run: dartanalyzer . --fatal-hints

Cargando…
Cancelar
Guardar