This repository has been archived by the owner on Jul 24, 2024. It is now read-only.
Upstream changes #552
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
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
name: Tests | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
- feat/* | |
pull_request: | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
cache: true | |
- name: Install Melos | |
run: dart pub global activate melos | |
- name: Boostrap | |
run: melos bs | |
# pre-pull the image so `usePostgresDocker` does not delay which may causes | |
# tests to timeout | |
- name: pull latest postgres image | |
run: docker pull postgres:latest | |
- name: Run tests | |
run: melos test:all | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
cache: true | |
- name: Install Melos | |
run: dart pub global activate melos | |
- name: Boostrap | |
run: melos bs | |
- name: Verify formatting | |
run: melos format | |
- name: Analyze project source | |
run: melos analyze |