File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -28,11 +28,14 @@ jobs:
2828 run : conda env create -f environment.yml
2929
3030 - name : Activate diff_check conda environment
31- run : conda activate diff_check
31+ run : conda activate diff_check | "name:diff_check" >> $GITHUB_ENV
32+
33+ - name : Verify Python version
34+ run : conda run --name diff_check python --version
3235
3336 - name : Cmake Configure
3437 run : |
35- cmake -S . -B build -A x64 -DBUILD_PYTHON_MODULE=ON -DBUILD_TESTS=ON -DRUN_TESTS=ON
38+ conda run --name diff_check cmake -S . -B build -A x64 -DBUILD_PYTHON_MODULE=ON -DBUILD_TESTS=ON -DRUN_TESTS=ON
3639
3740 - name : CMake Build
38- run : ${{github.workspace}}/cmake/build.bat
41+ run : conda run --name diff_check ${{github.workspace}}/cmake/build.bat
You can’t perform that action at this time.
0 commit comments