Update README.md #413
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |