-
-
Notifications
You must be signed in to change notification settings - Fork 10
28 lines (21 loc) · 582 Bytes
/
tests.yml
File metadata and controls
28 lines (21 loc) · 582 Bytes
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
name: Flutter tests
on:
pull_request:
branches: [ main, develop, release/* ]
jobs:
test:
runs-on: ubuntu-latest
env:
FLUTTER_VERSION: '3.29.0' # Update with your desired default version
steps:
- uses: actions/checkout@v4
- name: Use Flutter action
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.FLUTTER_VERSION }}
- name: Install dependencies
run: flutter pub get
- name: Run tests
run: |
flutter test
cd packages/adblocker_core && flutter test