Skip to content

Commit 03bc89f

Browse files
authored
Create super_string.yml
1 parent 1bd124a commit 03bc89f

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/super_string.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: super_string
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
container:
14+
image: google/dart:2.12.0-0
15+
16+
steps:
17+
- uses: actions/checkout@v2
18+
19+
- name: Install dependencies
20+
run: dart pub get
21+
22+
- name: Verify formatting
23+
run: dart format --output=none --set-exit-if-changed .
24+
25+
- name: Analyze project source
26+
run: dart analyze --fatal-infos --fatal-warnings .
27+
28+
- name: Run tests
29+
run: dart test

0 commit comments

Comments
 (0)