diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 34f8b0f5..2bc0037a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,12 +44,14 @@ jobs: build: strategy: matrix: - target: [ x86_64-unknown-linux-gnu, x86_64-apple-darwin ] + target: [ x86_64-unknown-linux-gnu, x86_64-apple-darwin, x86_64-pc-windows-msvc ] include: - target: x86_64-unknown-linux-gnu os: ubuntu-latest - target: x86_64-apple-darwin os: macos-latest + - target: x86_64-pc-windows-msvc + os: windows-latest runs-on: ${{ matrix.os }} steps: diff --git a/.github/workflows/release-cli.yml b/.github/workflows/release-cli.yml index 82ea752e..13c4efb8 100644 --- a/.github/workflows/release-cli.yml +++ b/.github/workflows/release-cli.yml @@ -14,6 +14,8 @@ jobs: os: ubuntu-latest - target: x86_64-apple-darwin os: macos-latest + - target: x86_64-pc-windows-msvc + os: windows-latest runs-on: ${{ matrix.os }} steps: - name: Checkout tagged commit diff --git a/bors.toml b/bors.toml index 8f1b1ab7..11761796 100644 --- a/bors.toml +++ b/bors.toml @@ -2,6 +2,7 @@ status = [ "static_analysis", "build (x86_64-unknown-linux-gnu)", "build (x86_64-apple-darwin)", + "build (x86_64-pc-windows-msvc)", "test (x86_64-unknown-linux-gnu)", "test (x86_64-apple-darwin)", "docker_tests (happy_path)",