Rework mutations #6342
Workflow file for this run
This file contains hidden or 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" | |
- "**.mdx" | |
push: | |
branches: | |
- master | |
- dev | |
paths-ignore: | |
- "**.md" | |
- "**.mdx" | |
schedule: | |
# runs the CI everyday at 10AM | |
- cron: "0 10 * * *" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ${{ matrix.package_path }} | |
strategy: | |
matrix: | |
channel: | |
- stable | |
- master | |
package_path: | |
- examples/counter | |
- examples/marvel | |
- examples/pub | |
- examples/random_number | |
- examples/stackoverflow | |
- examples/todos | |
- packages/riverpod | |
- packages/riverpod/example | |
- packages/flutter_riverpod | |
- packages/flutter_riverpod/example | |
- packages/hooks_riverpod | |
- packages/hooks_riverpod/example | |
- packages/riverpod_annotation | |
- packages/riverpod_generator | |
- packages/riverpod_generator/integration/build_yaml | |
steps: | |
- uses: actions/[email protected] | |
with: | |
fetch-depth: 2 | |
- uses: subosito/[email protected] | |
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: Install dependencies | |
run: flutter pub get | |
- name: Install dependencies (website/third-party) | |
run: | | |
if test -d "third-party"; then | |
flutter pub get third-party/cosmic_frontmatter | |
fi | |
- name: Check format | |
run: dart format --set-exit-if-changed . | |
if: matrix.package_path != 'website' && matrix.channel == 'master' | |
- name: Analyze | |
run: flutter analyze | |
if: matrix.channel == 'master' | |
- name: Run tests | |
run: | | |
if test -d "test"; then | |
if grep -q flutter "pubspec.yaml"; then | |
flutter test --coverage | |
else | |
${{github.workspace}}/scripts/coverage.sh | |
fi | |
fi | |
- name: Upload coverage to codecov | |
run: | | |
if test -d "test"; then | |
curl -s https://codecov.io/bash | bash | |
fi |