From 9c42d2be2ccb3d3d660bcf3aedb66614186127dc Mon Sep 17 00:00:00 2001 From: Michael Krasnyk Date: Tue, 20 Feb 2024 16:42:19 +0700 Subject: [PATCH] feat: enable windows builds --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 183b7b4..b1d9712 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,11 +14,13 @@ jobs: timeout-minutes: 40 strategy: matrix: - include: # TODO: windows-latest + include: - os: ubuntu-latest cache: ~/.cache/bazel - os: macos-latest cache: /private/var/tmp/_bazel_runner + - os: windows-latest + cache: ~/.cache/bazel steps: - name: Checkout Code @@ -33,7 +35,7 @@ jobs: shell: bash - name: Mount bazel cache - uses: actions/cache@v3.3.1 + uses: actions/cache@v4 with: path: ${{ matrix.cache }} key: bazel-${{ matrix.os }}