Skip to content

Commit

Permalink
Update pwd and pythonpath
Browse files Browse the repository at this point in the history
  • Loading branch information
danyoungday authored Mar 21, 2024
1 parent 63a1340 commit fac52fe
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/eluc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,20 @@ on:

jobs:
build:

runs-on: ubuntu-latest

defaults:
run:
working-directory: ./use_cases/eluc
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Change working directory
run: cd use_cases/eluc
- name: Set PYTHONPATH
run: export PYTHONPATH=$PWD
run: echo "PYTHONPATH=$PWD" >> $GITHUB_ENV
- name: Test PYTHONPATH
run: printenv PYTHONPATH
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit fac52fe

Please sign in to comment.