Skip to content

Update README.md

Update README.md #413

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [ "main" ]
jobs:
build:
strategy:
matrix:
os: [windows-latest, windows-11-arm, macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- uses: dtolnay/rust-toolchain@stable
- name: Install Linux dependencies
if: matrix.os == 'ubuntu-latest'
run: bash scripts/install_linux_deps.sh
- name: Build workspace
run: cargo build --workspace --verbose
# - name: Run tests
# run: cargo test --workspace --verbose