Skip to content

Commit

Permalink
Fix convention for .github/workflows/python-package.yml.py
Browse files Browse the repository at this point in the history
  • Loading branch information
minhtrung23 committed Sep 5, 2024
1 parent 2e658d3 commit 075d5c5
Showing 1 changed file with 15 additions and 11 deletions.
26 changes: 15 additions & 11 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,31 +16,35 @@ jobs:

steps:
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Set PYTHONPATH
run: echo "PYTHONPATH=$(pwd)/src" >> $GITHUB_ENV

run: |
echo "PYTHONPATH=$PYTHONPATH:$(pwd)/src" >> $GITHUB_ENV
echo "Current PYTHONPATH: $PYTHONPATH"
- name: Debug environment
run: |
echo "Current directory contents:"
ls -R
echo "Python path:"
python -c "import sys; print(sys.path)"
echo "Installed packages:"
pip list
- name: Lint with flake8
run: |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
- name: Test with pytest
run: |
pytest
- name: Debug Python Path and Directory
pytest -v
- name: Check for 'melt'
run: |
python -c "import sys; print(sys.path)"
ls -R # List all files and directories to verify module locations
which melt || echo "melt not found in PATH"
find . -name melt

0 comments on commit 075d5c5

Please sign in to comment.