feat: remove deprecated @Tailor and @TailorComponent #235
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
pull_request: | |
branches: [master, develop, main] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v1 | |
with: | |
flutter-version: "3.x" | |
channel: "stable" | |
- name: Install melos | |
run: dart pub global activate melos | |
- name: Install coverage | |
run: dart pub global activate coverage | |
- name: Install dependencies | |
run: melos run get | |
- name: Run build_runner | |
run: melos run generate | |
- name: Analyze project source | |
run: melos run analyze | |
- name: Run tests | |
run: melos run test:coverage |