From e612c808e2a702a21bf286b8610234c17767ccfb Mon Sep 17 00:00:00 2001 From: JarvanMo Date: Fri, 12 May 2023 20:06:41 +0800 Subject: [PATCH] update ci/di --- .github/workflows/build_test.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index d7759e36..d791bf51 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -22,6 +22,24 @@ jobs: - run: flutter pub get - run: cd example; flutter build ios --no-codesign + test_iOS_No_Pay: + name: Test iOS no_pay on ${{ matrix.os }} + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [macos-latest] + steps: + - uses: actions/checkout@v3 + - uses: subosito/flutter-action@v2 + with: + channel: stable + architecture: x64 + - run: flutter pub get + - run: | + cd example + sed -i.bak0 's/# no_pay: true/ no_pay: true/' pubspec.yaml + flutter build ios --no-codesign + test_android: name: Test android on ${{ matrix.os }} runs-on: ${{ matrix.os }}