Skip to content

update package name and example code #2

update package name and example code

update package name and example code #2

Workflow file for this run

name: Test Code
# Controls when the workflow will run
on:
# Triggers
pull_request:
branches: [ "master" ]
push:
branches: [ "master" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
flutter_analyze:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
- run: flutter pub get
- run: flutter analyze
- run: flutter test