Add working directory to agbenchmark pipy CI (#5237)

This commit is contained in:
merwanehamadi
2023-09-16 14:36:35 -07:00
committed by GitHub
parent 5039f25585
commit 098bcb8b8d

View File

@@ -25,13 +25,17 @@ jobs:
run: | run: |
curl -sSL https://install.python-poetry.org | python3 - curl -sSL https://install.python-poetry.org | python3 -
echo "$HOME/.poetry/bin" >> $GITHUB_PATH echo "$HOME/.poetry/bin" >> $GITHUB_PATH
- name: Build project for distribution - name: Build project for distribution
working-directory: ./benchmark/
run: poetry build run: poetry build
- name: Install dependencies - name: Install dependencies
working-directory: ./benchmark/ working-directory: ./benchmark/
run: poetry install run: poetry install
- name: Check Version - name: Check Version
working-directory: ./benchmark/
id: check-version id: check-version
run: | run: |
echo version=$(poetry version --short) >> $GITHUB_OUTPUT echo version=$(poetry version --short) >> $GITHUB_OUTPUT