Debug Python versions

This commit is contained in:
Anton Tayanovskyy 2021-11-22 18:15:24 -05:00
parent 938d09dce8
commit 47e97143ff
2 changed files with 10 additions and 0 deletions

View file

@ -188,6 +188,12 @@ jobs:
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Check Python Version
run: |
python --version
- name: Check Python Version under Make
run: |
make check_python_version
- name: Set up DotNet ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v1
with:

View file

@ -89,3 +89,7 @@ test_build:: $(TEST_ALL_DEPS)
test_all:: test_build
cd pkg && $(GO_TEST) ${PROJECT_PKGS}
cd tests && $(GO_TEST) -p=1 ${TESTS_PKGS}
check_python_version::
python --version