inline-python 0.6.0

Inline Python code directly in your Rust code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
name: Rust
on:
  push: { branches: "master" }
  pull_request: { branches: "*" }
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
    - name: Build examples
      run: cd examples && cargo +nightly build --all --verbose