Skip to content

add publishing action #5

add publishing action

add publishing action #5

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