- workflows
This commit is contained in:
3
.github/workflows/wheels.yml
vendored
3
.github/workflows/wheels.yml
vendored
@@ -1,6 +1,7 @@
|
|||||||
name: Wheels
|
name: Wheels
|
||||||
|
|
||||||
on: [push, pull_request]
|
on: workflow_call
|
||||||
|
# [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
wheels_pytest:
|
wheels_pytest:
|
||||||
|
|||||||
25
.github/workflows/where_is_cargo.yml
vendored
Normal file
25
.github/workflows/where_is_cargo.yml
vendored
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
name: Where_is_cargo
|
||||||
|
|
||||||
|
on: [push, pull_request]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
where_is_cargo:
|
||||||
|
name: Where is cargo
|
||||||
|
needs: [ wheels_pytest ]
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: actions/setup-python@v5
|
||||||
|
|
||||||
|
- name: Check path
|
||||||
|
if: runner.os != 'Windows'
|
||||||
|
run: echo $PATH
|
||||||
|
|
||||||
|
- name: Set path
|
||||||
|
if: runner.os != 'Windows'
|
||||||
|
run: export PATH="$HOME/.cargo/bin:$PATH"
|
||||||
|
|
||||||
|
- name: Check path
|
||||||
|
if: runner.os != 'Windows'
|
||||||
|
run: echo $PATH
|
||||||
Reference in New Issue
Block a user