Skip to content

Commit

Permalink
Add action to print system information
Browse files Browse the repository at this point in the history
  • Loading branch information
leon-vv committed Oct 12, 2024
1 parent 3ac4392 commit 9c4c804
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,12 @@ jobs:
with:
name: ubuntu-wheel
path: ./
- name: Print system information
run: |
pwd
ls
ls wheelhouse/*
ls dist/*
- name: Install the wheel
run: pip install wheelhouse/*.whl
- name: Run unit tests
Expand All @@ -95,6 +101,12 @@ jobs:
with:
name: windows-wheel
path: ./
- name: Print system information
run: |
pwd
ls
ls wheelhouse/*
ls dist/*
- name: Install the wheel
run: pip install dist/*.whl
- name: Run unit tests
Expand Down

0 comments on commit 9c4c804

Please sign in to comment.