Skip to content

Commit

Permalink
Merge main
Browse files Browse the repository at this point in the history
  • Loading branch information
stavros11 committed Jan 30, 2024
2 parents 510e3ca + 154aab0 commit 8cb49d6
Show file tree
Hide file tree
Showing 54 changed files with 5,126 additions and 4,019 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/rustapi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Test Qibolab Rust API
name: Rust API

on:
push:
workflow_dispatch:

jobs:
tests:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Prepare virtual environment
run: |
pip install .
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Check and lint
working-directory: crate
run: |
cargo check
cargo clippy --all-targets
- name: Build & run example
working-directory: crate
run: |
cargo run --example example
Loading

0 comments on commit 8cb49d6

Please sign in to comment.