Skip to content

Commit e44f484

Browse files
committed
Small refactor
1 parent f2ac521 commit e44f484

File tree

1 file changed

+3
-31
lines changed

1 file changed

+3
-31
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ name: CI
22

33
on:
44
push:
5-
branches: [main]
5+
branches: [ main ]
66
paths-ignore:
77
- '**/README.md'
88
pull_request:
9-
branches: [main]
9+
branches: [ main ]
1010

1111
defaults:
1212
run:
@@ -96,7 +96,7 @@ jobs:
9696
strategy:
9797
fail-fast: true
9898
matrix:
99-
api-level: [31]
99+
api-level: [ 31 ]
100100

101101
steps:
102102
- name: Checkout
@@ -123,31 +123,3 @@ jobs:
123123
script: |
124124
flutter pub get
125125
flutter test integration_test --flavor dev --timeout 1h
126-
127-
# integration_tests:
128-
# runs-on: macos-latest
129-
# steps:
130-
# - name: Checkout code
131-
# uses: actions/checkout@v3
132-
#
133-
# - name: Set up Flutter
134-
# uses: subosito/flutter-action@v2
135-
# with:
136-
# channel: stable
137-
#
138-
# - name: Install dependencies
139-
# run: flutter pub get
140-
#
141-
# - uses: futureware-tech/simulator-action@v4
142-
# with:
143-
# model: 'iPhone 16 Pro'
144-
# wait_for_boot: true
145-
#
146-
# # Pre-building the app serves two purposes:
147-
# # 1. Verifies that the app builds successfully before running integration tests.
148-
# # 2. Speeds up the integration test startup, reducing the risk of test timeouts.
149-
# - name: Pre-build the app
150-
# run: flutter build ios --simulator --target=integration_test/app_test.dart --flavor dev
151-
#
152-
# - name: Run integration tests
153-
# run: flutter test integration_test/app_test.dart --flavor dev --timeout 1h

0 commit comments

Comments
 (0)