From e8c36967865907cc2c1b868e5e0628fad988e14e Mon Sep 17 00:00:00 2001 From: yoshiko2 Date: Sun, 7 May 2023 22:25:00 +0800 Subject: [PATCH] Update CI --- .github/workflows/main.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4b8b340..edb036c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -91,10 +91,18 @@ jobs: name: MDC-${{ env.VERSION }}-${{ runner.os }}-amd64 path: dist - - name: Run test - if: matrix.os == 'ubuntu-latest' + - name: Run test (Ubuntu & MacOS) + if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' run: | cd dist touch IPX-292.mp4 touch STAR-437-C.mp4 - ./Movie_Data_Capture \ No newline at end of file + ./Movie_Data_Capture + + - name: Run test (Windows) + if: matrix.os == 'windows-latest' + run: | + cd dist + ni IPX-292.mp4 + ni STAR-437-C.mp4 + Movie_Data_Capture \ No newline at end of file