Skip to content

добавили конюнктивный разбор #149

добавили конюнктивный разбор

добавили конюнктивный разбор #149

Workflow file for this run

name: Lint
on:
push:
jobs:
Lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Dart
uses: dart-lang/setup-dart@v1
# - name: Install Pub Dependencies
# run: dart pub get
- name: Verify Formatting
run: dart format --output=none --set-exit-if-changed .
- name: Analyze Project Source
run: dart analyze
# - name: Run tests
# run: dart test