Include bodyweight info for predefined exercises; fixed data fetch bug #209
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: Linting | |
on: | |
pull_request: | |
branches: | |
- "*" | |
paths: | |
- lib/** | |
- '.github/workflows/linting.yml' | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Linting checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.22.2' | |
channel: 'stable' | |
- run: flutter --version | |
- name: Install dependencies | |
run: dart pub get | |
- name: Verify formatting | |
run: dart format --output=none --set-exit-if-changed . | |
#- name: Analyze project source | |
# run: dart analyze --fatal-infos | |
#- name: Run tests | |
# run: flutter test |