Skip to content

fix: update sse

fix: update sse #17

Workflow file for this run

name: Rust build and test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build-and-test:
# run on mainstream desktop platforms
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: dtolnay/rust-toolchain@stable
- name: Set up Python 3.11
id: setup-python
uses: actions/setup-python@v4
with:
python-version: "3.11"
# TODO: python dependencies
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose