Skip to content

Commit 76d52cf

Browse files
committed
Test on GH actions.
1 parent 4a6759f commit 76d52cf

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/test.yaml

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

0 commit comments

Comments
 (0)