Skip to content

update README.md

update README.md #153

Workflow file for this run

name: Test saba
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- name: Build CUI
run: |
cargo build --features=cui --bin=saba_cui --no-default-features
- name: Run tests
run: |
cd core
cargo test