We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e36d4c commit e975bb9Copy full SHA for e975bb9
.github/workflows/pull-request-checks.yaml
@@ -21,7 +21,7 @@ jobs:
21
run: cd build; ninja
22
- name: Run CTest
23
run: cd build; ctest -V -L CORE .
24
- check-vs-2019-build-and-test:
+ check-vs-2019-build-only:
25
runs-on: windows-2019
26
env:
27
SCRIPT_DIR: .github/workflows/vs2019
@@ -31,12 +31,11 @@ jobs:
31
steps:
32
- name: Checkout the repository
33
uses: actions/checkout@v2
34
-
35
- - name: Update the submodules
36
- run: git submodule update --init
+ with:
+ submodules: recursive
37
38
- name: Install bison and flex
39
- run: ${{env.SCRIPT_DIR}}\install-bison.bat
+ run: %SCRIPT_DIR%\install-bison.bat
40
41
- name: Build cbmc
42
- run: ${{env.SCRIPT_DIR}}\build-cbmc.bat
+ run: %SCRIPT_DIR%\build-cbmc.bat
0 commit comments