- workflows

This commit is contained in:
Wim Pomp
2024-10-16 15:39:55 +02:00
parent d7b2ae24ca
commit 2fad446566
2 changed files with 27 additions and 1 deletions

View File

@@ -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
View 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