Skip to content

chore: v0.7.0

chore: v0.7.0 #143

Workflow file for this run

name: alchemist
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.13.0'
channel: 'stable'
cache: true
- name: Install Dependencies
run: flutter packages get
- name: Format
run: dart format --set-exit-if-changed .
- name: Analyze project source
uses: invertase/github-action-dart-analyzer@v1
- name: Run tests
run: flutter test --no-pub --coverage --test-randomize-ordering-seed=random
- uses: codecov/codecov-action@v2
with:
files: coverage/lcov.info
pana:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.13.0'
channel: 'stable'
cache: true
- name: Install Dependencies
run: |
flutter packages get
flutter pub global activate pana
- name: Verify Pub Score
run: ./tool/verify_pub_score.sh 130