diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 8b0bb0a2a..85706829f 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -176,6 +176,19 @@ jobs: moon test --target all moon test --release --target all + - name: moon test in native backend (unix) + if: ${{ matrix.os != 'windows-latest' }} + run: | + ulimit -s 8176 + moon test --target native + moon test --target native --release + + - name: moon test in native backend (windows) + if: ${{ matrix.os == 'windows-latest' }} + run: | + # --release not support for windows + moon test --target native + - name: moon bundle run: moon bundle --all