Skip to content

Adds basic CI that builds & tests with Cargo and Bazel #2

Adds basic CI that builds & tests with Cargo and Bazel

Adds basic CI that builds & tests with Cargo and Bazel #2

Workflow file for this run

name: Build & Test with Bazel
on: [push, pull_request]
jobs:
build:
name: cargo build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: bazelisk build ...
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: bazelisk test ...