chore(deps): bump django from 4.0.5 to 4.2.16 in /community_portal #88
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cleint Pre-Submit Tests | |
on: pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
working-directory: ./client | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: stable | |
cache: true | |
cache-key: flutter3.0.1 # change this to force refresh cache | |
- run: flutter --version | |
# Get dependencies. | |
- name: Get dependencies | |
run: flutter pub get . | |
# Check for formatting issues | |
- name: Check for formatting issues (run "flutter format . ") | |
run: flutter format --set-exit-if-changed . | |
# analyze Dart for errors | |
- name: Analyze code | |
run: flutter analyze --fatal-infos --fatal-warnings . | |
# Run tests | |
- name: Run Tests with coverage | |
run: flutter test | |
# - name: Upload coverage to codecov | |
# uses: codecov/codecov-action@v3 | |
# with: | |
# fail_ci_if_error: true | |
# verbose: true | |