feat: add phase 8 ci matrix workflow
Co-authored-by: Eriyc <50216491+Eriyc@users.noreply.github.com>
This commit is contained in:
3
.github/workflows/BUILD.bazel
vendored
Normal file
3
.github/workflows/BUILD.bazel
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
package(default_visibility = ["//visibility:public"])
|
||||
|
||||
exports_files(["ci.yml"])
|
||||
27
.github/workflows/ci.yml
vendored
Normal file
27
.github/workflows/ci.yml
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
name: CI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: ["main"]
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
test:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- os: ubuntu-latest
|
||||
phase8_target: linux-x64
|
||||
- os: macos-14
|
||||
phase8_target: darwin-arm64
|
||||
- os: windows-latest
|
||||
phase8_target: windows
|
||||
runs-on: ${{ matrix.os }}
|
||||
env:
|
||||
USE_BAZEL_VERSION: 9.0.0
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: bazel-contrib/setup-bazel@0.15.0
|
||||
- name: Run tests (${{ matrix.phase8_target }})
|
||||
run: bazel test //tests/...
|
||||
Reference in New Issue
Block a user