Skip to content

chore(release): publish 2.1.1 #11

chore(release): publish 2.1.1

chore(release): publish 2.1.1 #11

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
flutter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
- name: Get dependencies
run: flutter pub get
- name: Check format
run: dart format --set-exit-if-changed .
- name: Analyze
run: flutter analyze
- name: Tests
run: flutter test
- name: Invoke workflow without inputs
uses: benc-uk/workflow-dispatch@v1
with:
workflow: .github/workflows/deploy-example.yml
token: ${{ secrets.GITHUB_TOKEN }}