From 464a39b0e06c89fe8dca3efd4bc97f46cffe415d Mon Sep 17 00:00:00 2001 From: niro4-1 Date: Thu, 4 Jun 2026 10:19:42 +0300 Subject: [PATCH] Add windows-latest to CI matrix --- .github/workflows/ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..6d44e5e --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,13 @@ +name: CI +on: [push, pull_request] + +jobs: + build: + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, windows-latest, macos-latest] + steps: + - uses: actions/checkout@v3 + - name: Build + run: echo Building on ${{ matrix.os }} \ No newline at end of file