Skip to content

Update README

Update README #2

Workflow file for this run

name: Unit Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04]
include:
- runs-on: ubuntu-24.04
compiler: gcc
gcc: 14
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: build
run: bazel build ...
- name: test
run: bazel test ...