Skip to content

Commit

Permalink
listing debug information
Browse files Browse the repository at this point in the history
  • Loading branch information
K20shores committed Jul 5, 2024
1 parent 71f0b83 commit aa3d905
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/smoke_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,21 @@ jobs:
python-version: '3.9'
cache: 'pip'

- run: pip install -r requirements.txt
- name: Install dependencies
run: python -m pip install --upgrade pip

- name: Install this package
run: pip install -e .

- name: Install dependencies
- name: Debug information
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
echo ${{ github.repository }}
echo ${{ github.sha }}
echo ${{ github.ref }}
echo ${{ github.event_name }}
# list current working directory
echo pwd
ls -a
- name: Run the smoke tests
run: |
Expand Down

0 comments on commit aa3d905

Please sign in to comment.