-
-
Notifications
You must be signed in to change notification settings - Fork 150
42 lines (32 loc) · 1.25 KB
/
dart.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# 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: Dart
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.1.0
- uses: subosito/flutter-action@v2.7.1
with:
flutter-version: '3.13.6'
- name: Install facebook_auth dependencies
run: cd facebook_auth && flutter pub get
- name: Run facebook_auth tests
run: cd facebook_auth && flutter test --platform chrome
- name: Install facebook_auth_platform_interface dependencies
run: cd facebook_auth_platform_interface && flutter pub get
- name: Run facebook_auth_platform_interface tests
run: cd facebook_auth_platform_interface && flutter test --coverage
- name: Install facebook_auth_web dependencies
run: cd facebook_auth_web && flutter pub get
- name: Run facebook_auth_platform_interface tests
run: cd facebook_auth_web && flutter test --platform chrome
- name: Upload coverage to Codecov
run: curl -s https://codecov.io/bash | bash