From 6797bccebc5c483f2b9eee598b9937fb90739a04 Mon Sep 17 00:00:00 2001 From: Jama Hussein Mohamud Date: Mon, 23 Sep 2024 19:55:34 -0400 Subject: [PATCH] debug: add to print environment information when running GitHub Actions workflow --- .github/workflows/push_code_check.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/push_code_check.yml b/.github/workflows/push_code_check.yml index 199f6d87f..cb367e7d6 100644 --- a/.github/workflows/push_code_check.yml +++ b/.github/workflows/push_code_check.yml @@ -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 @@ -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