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