configs.dart
refactor
#2
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: | |
paths-ignore: | |
- "**.md" | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- "**.md" | |
schedule: | |
# runs the CI everyday at 10AM | |
- cron: "0 10 * * *" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
channel: | |
- stable | |
- master | |
pub: | |
- get | |
- upgrade | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: ${{ matrix.channel }} | |
- name: Add pub cache bin to PATH | |
run: echo "$HOME/.pub-cache/bin" >> $GITHUB_PATH | |
- name: Add pub cache to PATH | |
run: echo "PUB_CACHE="$HOME/.pub-cache"" >> $GITHUB_ENV | |
- name: Add pubspec_overrides to the analyzer_plugin starter | |
run: "echo \"dependency_overrides:\n custom_lint:\n path: ${{github.workspace}}/packages/custom_lint\" > packages/custom_lint/tools/analyzer_plugin/pubspec_overrides.yaml" | |
- run: dart pub global activate melos | |
- name: Install dependencies | |
run: melos exec -- "dart pub ${{ matrix.pub }}" | |
- name: Check format | |
run: dart format --set-exit-if-changed . | |
- name: Analyze | |
run: dart analyze | |
- name: Run tests | |
run: melos exec --dir-exists=test "dart test" | |
# - name: Upload coverage to codecov | |
# run: curl -s https://codecov.io/bash | bash |