Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 05d61d6

Browse files
committedJul 20, 2024·
Set up actions
1 parent bc9d710 commit 05d61d6

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
 

‎.github/workflows/build.yml

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)
Please sign in to comment.