Skip to content

Commit

Permalink
ci: fix the internal references: replace relative paths with absolute…
Browse files Browse the repository at this point in the history
… references @v2
  • Loading branch information
ansjhenry committed Sep 24, 2024
1 parent d99ab86 commit af8851c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scade-tests-pytest/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,27 +78,27 @@ runs:
steps:

- name: "Get SCADE installation directory"
uses: ./get-scade-dir
uses: ansys/scade-actions/get-scade-dir@v2
id: get-scade-dir
with:
scade-version: ${{ inputs.scade-version }}

- name: "Get SCADE Python interpreter"
uses: ./get-scade-python
uses: ansys/scade-actions/get-scade-python@v2
id: get-scade-python
with:
scade-dir: ${{ steps.get-scade-dir.outputs.scade-directory }}

- name: "Create Python virtual environment"
uses: ./create-scade-venv
uses: ansys/scade-actions/create-scade-venv@v2
id: create-scade-venv
with:
python-dir: ${{ steps.get-scade-python.outputs.python-dir }}
target-dir: '.venvs'
target-name: ${{ steps.get-scade-python.outputs.python-name }}

- name: "Run the tests"
uses: ./tests-pytest
uses: ansys/scade-actions/tests-pytest@v2
with:
python-dir: ${{ steps.create-scade-venv.outputs.scripts-dir }}
library-dir: ${{ inputs.library-dir }}
Expand Down

0 comments on commit af8851c

Please sign in to comment.