From 7c55ad45755c27db5ad4b5481c6776f6156b181b Mon Sep 17 00:00:00 2001 From: kaichaosun Date: Thu, 18 Dec 2025 18:21:36 +0800 Subject: [PATCH] chore: splite windows test ci --- .github/workflows/test-windows.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/test-windows.yml diff --git a/.github/workflows/test-windows.yml b/.github/workflows/test-windows.yml new file mode 100644 index 0000000..2f675e3 --- /dev/null +++ b/.github/workflows/test-windows.yml @@ -0,0 +1,23 @@ +name: test-windows + +on: + pull_request: + branches: + - main + paths-ignore: + - '**README.md' + - '.gitignore' + - 'LICENSE' +jobs: + tests-tasks: + strategy: + matrix: + os: [windows-latest] + runs-on: ${{ matrix.os }} + steps: + - name: Checkout + uses: actions/checkout@v6 + - name: Update + run: make update + - name: Tests + run: make tests