Skip to content

Added SAN2CMBR capabilities, seperated cmbrcc and libcmbr, added new … #19

Added SAN2CMBR capabilities, seperated cmbrcc and libcmbr, added new …

Added SAN2CMBR capabilities, seperated cmbrcc and libcmbr, added new … #19

Workflow file for this run

name: CMBR build and test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
strategy:
matrix:
os: [ubuntu-22.04, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose