You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- name: CI-python
-
- # Filter CI as this job will take time.
- on:
- push:
- paths:
- - apis/python/**
- - binaries/runtime/**
- pull_request:
- workflow_dispatch:
-
- jobs:
- examples:
- name: "Python Examples"
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v3
-
- - uses: actions/setup-python@v2
- with:
- python-version: "3.10"
-
- - uses: r7kamura/rust-problem-matchers@v1.1.0
- - run: cargo --version --verbose
- - uses: Swatinem/rust-cache@v2
- with:
- shared-key: ""
-
- - name: "Python Dataflow example"
- run: cargo run --example python-dataflow
-
- - name: "Python Operator Dataflow example"
- run: cargo run --example python-operator-dataflow
|