Skip to content

more typing annotations #3

more typing annotations

more typing annotations #3

Workflow file for this run

name: Rust Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Build and Install Rust Project
run: |
cd rust
cargo install --path crates/mesc_cli
- name: Install Python dependencies for testing
uses: actions/setup-python@v2
with:
python-version: '3.x'
run: |
pip install pytest pytest-xdist
- name: Run Rust tests
run: |
cd ../tests
pytest --adapters adapters/rust