Move crates_vendor to deps/rust/crates #19
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Examples | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
bazel: | |
strategy: | |
matrix: | |
# TODO(now): Figure out why Windows won't build. | |
# os: [ubuntu-22.04, windows-2022] | |
os: [ubuntu-22.04] | |
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 }} //... |