Skip to content

Commit dd5e5db

Browse files
committed
add basic CI file
1 parent d61bc2c commit dd5e5db

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/main.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Wampproto Dart CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v4
11+
- name: Set up Dart
12+
uses: dart-lang/setup-dart@v1
13+
with:
14+
sdk: 3.3.0
15+
16+
- name: Install dependencies
17+
run: dart pub get

0 commit comments

Comments
 (0)