Skip to content

Replaced the deprecated RaisedButton with the equivalent ElevatedButton. #193

Replaced the deprecated RaisedButton with the equivalent ElevatedButton.

Replaced the deprecated RaisedButton with the equivalent ElevatedButton. #193

Workflow file for this run

name: Dashbook
on:
push:
branches:
- main
pull_request:
types: [opened, reopened, synchronize]
jobs:
# BEGIN LINTING STAGE
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
- run: |
flutter pub get
dart format --set-exit-if-changed .
analyze:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
- run: flutter analyze lib test
# END LINTING STAGE
# BEGIN TESTING STAGE
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
- run: flutter test
# END TESTING STAGE