From 81aa24dd8ebcf9413f3217e7025636386fae20b7 Mon Sep 17 00:00:00 2001 From: Vaibhav Singhal Date: Thu, 22 Feb 2024 19:13:09 +0000 Subject: [PATCH] add python shell in windows job --- .github/workflows/shell.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/shell.yaml b/.github/workflows/shell.yaml index fa2e18d..5de4762 100644 --- a/.github/workflows/shell.yaml +++ b/.github/workflows/shell.yaml @@ -21,4 +21,10 @@ jobs: echo $env:GITHUB_SHA echo $env:GITHUB_REPOSITORY echo $env:GITHUB_WORKSPACE + - name: Python shell + shell: python + run: | + import platform + print(platform.processor()) + \ No newline at end of file