Skip to content

Commit

Permalink
feat: test code lint with subosito/flutter-action@v2
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoweii committed Oct 26, 2023
1 parent 0990625 commit 41eec04
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Web SDK Build
name: Flutter SDK Build

on:
push:
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/code-lint.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Web SDK Lint
name: Flutter SDK Lint

on:
push:
branches: [ "main" ]
branches: [ "*" ]
pull_request:
branches: [ "main" ]

Expand All @@ -11,6 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- run: flutter --version
- name: Run install packages
run: flutter pub get
- name: Run code format
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Web SDK Test
name: Flutter SDK Test

on:
push:
Expand Down

0 comments on commit 41eec04

Please sign in to comment.