refactor code #268
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |