chore: Remove unused anchorKeyId property in AnchoredHelper #23
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: pal-widgets | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: subosito/flutter-action@v1 | |
with: | |
channel: 'stable' | |
- name: Install Dependencies | |
run: flutter pub get | |
- name: Format | |
run: flutter format --set-exit-if-changed lib test | |
- name: Analyze | |
run: flutter analyze lib test | |
- name: Run tests | |
run: flutter test --no-pub --coverage --test-randomize-ordering-seed random | |
- name: Check Code Coverage | |
uses: ChicagoFlutter/[email protected] | |
with: | |
path: packages/alfreed/coverage/lcov.info | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |