Skip to content

Commit

Permalink
deactivate env before running CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
haixuanTao committed Apr 10, 2024
1 parent c6948c1 commit b589049
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,10 +143,13 @@ jobs:
run: cargo run --example python-dataflow
- uses: conda-incubator/setup-miniconda@v2
with:
auto-activate-base: false
auto-activate-base: true
activate-environment: ""
- name: "Python Operator Dataflow example"
shell: bash -l {0}
run: cargo run --example python-operator-dataflow
run: |
conda deactivate
cargo run --example python-operator-dataflow
# ROS2 bridge examples
ros2-bridge-examples:
Expand Down

0 comments on commit b589049

Please sign in to comment.