Skip to content

Commit 42af3cd

Browse files
committed
💚 Fixed CI
1 parent 1db8b56 commit 42af3cd

File tree

2 files changed

+31
-45
lines changed

2 files changed

+31
-45
lines changed

.github/workflows/dart.yml

Lines changed: 0 additions & 45 deletions
This file was deleted.

.github/workflows/flutter.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# This workflow uses actions that are not certified by GitHub.
2+
# They are provided by a third-party and are governed by
3+
# separate terms of service, privacy policy, and support
4+
# documentation.
5+
6+
name: Dart
7+
8+
on:
9+
push:
10+
branches: [ "main" ]
11+
pull_request:
12+
branches: [ "main" ]
13+
14+
jobs:
15+
build:
16+
runs-on: ubuntu-latest
17+
18+
steps:
19+
- uses: actions/checkout@v3
20+
- uses: subosito/flutter-action@v2
21+
- name: Install dependencies
22+
run: flutter pub get
23+
24+
- name: Check code format
25+
run: flutter format . -o none --set-exit-if-changed
26+
27+
- name: Analyze project source
28+
run: flutter analyze --fatal-infos
29+
30+
- name: Run tests
31+
run: flutter test

0 commit comments

Comments
 (0)