Skip to content

Commit 69f531e

Browse files
test workflow
1 parent 5fc0c04 commit 69f531e

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/test.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Dart
2+
3+
on:
4+
pull_request:
5+
branches: [main]
6+
push:
7+
branches: [main]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: dart-lang/setup-dart@v1
15+
16+
- run: dart pub get
17+
- run: dart format --output=none --set-exit-if-changed .
18+
- run: dart analyze
19+
- run: dart test

0 commit comments

Comments
 (0)