Skip to content

Commit

Permalink
. e verify code installation
Browse files Browse the repository at this point in the history
  • Loading branch information
yelmuratoff committed May 18, 2024
1 parent 2ff6ed1 commit b98c592
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,17 @@ jobs:
choco install vscode
fi
shell: bash

- name: Verify Visual Studio Code installation
run: |
if [[ "${{ runner.os }}" == "Linux" ]]; then
/snap/bin/code --version
elif [[ "${{ runner.os }}" == "macOS" ]]; then
/Applications/Visual Studio Code.app/Contents/Resources/app/bin/code --version
elif [[ "${{ runner.os }}" == "Windows" ]]; then
"C:\\Program Files\\Microsoft VS Code\\Code.exe" --version
fi
shell: bash

- name: Build and test
run: |
Expand Down

0 comments on commit b98c592

Please sign in to comment.