Skip to content

refactor code

refactor code #268

name: ⭐ Integration Test ⭐ Windows
on:
push:
paths-ignore:
- '**.md'
jobs:
Testing:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup Flutter SDK
uses: flutter-actions/setup-flutter@v4
- name: Enable Flutter Desktop
run: flutter config --enable-windows-desktop
- name: Install Flutter Dependencies
run: flutter pub get
- name: Run create_image_from_pdf_integration_test Integration Tests
run: |
cd example
flutter test integration_test/create_image_from_pdf_integration_test.dart -d windows
- name: Run create_pdf_from_multiple_images_integration_test Integration Tests
run: |
cd example
flutter test integration_test/create_pdf_from_multiple_images_integration_test.dart -d windows
- name: Run merge_multiple_pdfs_integration_test Integration Tests
run: |
cd example
flutter test integration_test/merge_multiple_pdfs_integration_test.dart -d windows