Skip to content

Add GitHub Actions workflows for Android tests and enforce PR rules f… #3

Add GitHub Actions workflows for Android tests and enforce PR rules f…

Add GitHub Actions workflows for Android tests and enforce PR rules f… #3

Workflow file for this run

name: Test
on:
pull_request:
branches: ["develop"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
cache: true
- name: Install dependencies
run: flutter pub get
- name: Run tests
run: flutter test