Skip to content

Feature/groups missions #131

Feature/groups missions

Feature/groups missions #131

Workflow file for this run

name: Testing Mobile
on:
pull_request:
branches:
- '**'
types:
- opened
- synchronize
- reopened
- ready_for_review
paths:
- "mobile/**"
- ".github/workflows/test-mobile.yml"
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test-mobile:
name: Test Mobile
runs-on: ubuntu-latest
defaults:
run:
working-directory: mobile
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version-file: mobile/pubspec.yaml
- name: Copy .env.ci to .env
run: cp .env.ci .env
- name: Install dependencies
run: flutter pub get
- name: Run tests
run: flutter test