Skip to content

Add a Windows build to CI #14

Add a Windows build to CI

Add a Windows build to CI #14

Workflow file for this run

name: Examples
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
bazel:
strategy:
matrix:
os: [ubuntu-22.04, windows-2022]
target-arch: [ X64 ]
include:
- os-name: linux
os: ubuntu-22.04
- os-name: windows
os: windows-2022
runs-on: ${{ matrix.os }}
name: bazel (${{ matrix.os-name }})
steps:
- uses: actions/checkout@v4
- name: Bazel Test
run: cd examples/bazel && bazel test --config=${{ matrix.os-name }} //...