inline-python 0.5.1

Inline Python code directly in your Rust code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
name: Rust
on: [push, pull_request]
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - name: Install Rust nightly
      run: rustup install nightly
    - uses: actions/checkout@v1
    - name: Build
      run: cargo +nightly build --verbose
    - name: Run tests
      run: cargo +nightly test --verbose