Я пытался интегрировать Dart CI в свой проект флаттера, но мое приложение флаттера находится внутри папки root приложения.
Приложение находится внутри папки community_app_boilerplate
в root и я думаю, мы не можем переместить папку .github
из root.
![enter image description here](https://i.stack.imgur.com/D0eqF.png)
Я пробовал это на dart.yaml:
name: Dart CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
container:
image: google/dart:latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: pub get --target=community_app_boilerplate/pubspec.yaml
- name: Run tests
run: pub run test --target=community_app_boilerplate/
Есть ли способ навигации по Dart CI внутри папки, в которой находятся файлы приложения?