Skip to content

Swapped from callbacks.* to direct ctype signatures for types. #300

Swapped from callbacks.* to direct ctype signatures for types.

Swapped from callbacks.* to direct ctype signatures for types. #300

Workflow file for this run

name: Rust
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
Build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Python - Install 3.8
uses: actions/setup-python@v2
with:
python-version: '3.8'
- name: Python - Install Dependencies
run: |
python -m pip install --upgrade pip
pip install cffi pytest
- name: Rust - Build
run: cargo build --verbose
- name: Rust - Style
run: |
cargo fmt --check
cargo test --verbose
- name: Rust - Test
run: cargo test --verbose