@@ -167,27 +167,27 @@ jobs:
167167 python.exe -c "import cryptography; print(f'Python3 cryptography version {cryptography.__version__}')"
168168
169169 - name : Configure CMake (Linux/macOS)
170- if : runner.os != 'Windows'
170+ if : runner.os != 'Windows'
171171 run : |
172172 source venv/bin/activate
173173 cmake \
174- -G "${{ matrix.generator }}" \
175- -S "${{ github.workspace }}" \
176- -B "${{ github.workspace }}/build" \
174+ -G "${{matrix.generator}}" \
175+ -S "${{github.workspace}}" \
176+ -B "${{github.workspace}}/build" \
177177 -DCMAKE_OSX_ARCHITECTURES=arm64 \
178- -DCMAKE_BUILD_TYPE="${{ env.BUILD_TYPE }}" \
179- -DCMAKE_INSTALL_PREFIX="${{ github.workspace }}/dist"
178+ -DCMAKE_BUILD_TYPE="${{env.BUILD_TYPE}}" \
179+ -DCMAKE_INSTALL_PREFIX="${{github.workspace}}/dist"
180180
181181 - name : Configure CMake (Windows)
182182 if : runner.os == 'Windows'
183183 run : |
184184 .\venv\Scripts\Activate.ps1
185185 cmake `
186- -G "${{ matrix.generator }}" `
187- -S "${{ github.workspace }}" `
188- -B "${{ github.workspace }}/build" `
189- -DCMAKE_BUILD_TYPE="${{ env.BUILD_TYPE }}" `
190- -DCMAKE_INSTALL_PREFIX="${{ github.workspace }}/dist"
186+ -G "${{matrix.generator}}" `
187+ -S "${{github.workspace}}" `
188+ -B "${{github.workspace}}/build" `
189+ -DCMAKE_BUILD_TYPE="${{env.BUILD_TYPE}}" `
190+ -DCMAKE_INSTALL_PREFIX="${{github.workspace}}/dist"
191191
192192 - name : Build
193193 run : cmake
@@ -205,14 +205,14 @@ jobs:
205205 - name : Test (Linux/macOS)
206206 if : runner.os != 'Windows'
207207 working-directory : ${{github.workspace}}/build
208- run : |
208+ run : |
209209 source ../venv/bin/activate
210210 ctest -C ${{env.BUILD_TYPE}}
211211
212212 - name : Test (Windows)
213213 if : runner.os == 'Windows'
214214 working-directory : ${{github.workspace}}/build
215- run : |
215+ run : |
216216 ..\venv\Scripts\Activate.ps1
217217 ctest -C ${{env.BUILD_TYPE}}
218218
0 commit comments