Skip to content

Commit e975bb9

Browse files
author
Fotis Koutoulakis
committed
Implement suggestions during code review.
1 parent 0e36d4c commit e975bb9

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/pull-request-checks.yaml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: cd build; ninja
2222
- name: Run CTest
2323
run: cd build; ctest -V -L CORE .
24-
check-vs-2019-build-and-test:
24+
check-vs-2019-build-only:
2525
runs-on: windows-2019
2626
env:
2727
SCRIPT_DIR: .github/workflows/vs2019
@@ -31,12 +31,11 @@ jobs:
3131
steps:
3232
- name: Checkout the repository
3333
uses: actions/checkout@v2
34-
35-
- name: Update the submodules
36-
run: git submodule update --init
34+
with:
35+
submodules: recursive
3736

3837
- name: Install bison and flex
39-
run: ${{env.SCRIPT_DIR}}\install-bison.bat
38+
run: %SCRIPT_DIR%\install-bison.bat
4039

4140
- name: Build cbmc
42-
run: ${{env.SCRIPT_DIR}}\build-cbmc.bat
41+
run: %SCRIPT_DIR%\build-cbmc.bat

0 commit comments

Comments
 (0)