Skip to content

Commit

Permalink
bumped to version 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nixrajput committed Sep 8, 2024
1 parent 50b2409 commit 47b253c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 16 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,21 +28,16 @@ jobs:
- name: Run Flutter doctor
run: flutter doctor -v

lint:
name: Lint Code
runs-on: ubuntu-latest
needs: setup-flutter
steps:
- name: Checkout Code
uses: actions/checkout@v3

- name: Run Flutter Analyzer (Lint)
run: flutter analyze

test:
name: Test Code
name: Run Test Cases
runs-on: ubuntu-latest
needs: lint
needs: setup-flutter
steps:
- name: Checkout Code
uses: actions/checkout@v3
Expand Down
13 changes: 4 additions & 9 deletions .github/workflows/web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,24 +26,19 @@ jobs:
- name: Check Flutter Version
run: flutter --version

- name: Get Flutter Dependencies
run: flutter pub get

lint:
name: Lint Code
runs-on: ubuntu-latest
needs: setup-flutter
steps:
- name: Checkout Code
uses: actions/checkout@v3

- name: Get Flutter Dependencies
run: flutter pub get

- name: Run Flutter Analyzer (Lint)
run: flutter analyze

deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
needs: lint
needs: setup-flutter
steps:
- name: Checkout Code
uses: actions/checkout@v4
Expand Down

0 comments on commit 47b253c

Please sign in to comment.