Skip to content

chore: Add changelog entry for 0.1.13 #143

chore: Add changelog entry for 0.1.13

chore: Add changelog entry for 0.1.13 #143

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@v3
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
cache: true
- run: dart format --set-exit-if-changed lib test
analyze:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
cache: true
- run: flutter analyze lib test
# END LINTING STAGE
# BEGIN TESTING STAGE
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
cache: true
- run: flutter test
# END TESTING STAGE