Skip to content

Commit

Permalink
debug: add to print environment information when running GitHub Actio…
Browse files Browse the repository at this point in the history
…ns workflow
  • Loading branch information
engmubarak48 committed Sep 23, 2024
1 parent 595db80 commit 6797bcc
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/push_code_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ jobs:
with:
python-version: "3.10"

- name: Display Python version
run: python -V

- name: Install code dependencies
run: bash ./prereq_ci.sh pip install --upgrade

Expand All @@ -36,6 +39,12 @@ jobs:
- name: Install Pytest and Isort
run: pip install pytest isort

- name: Display pip list
run: pip list

- name: Display system information
run: uname -a

- name: Validate import format in main source code
run: isort --profile black ./gflownet/ --check-only

Expand Down

0 comments on commit 6797bcc

Please sign in to comment.