You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/ci.yml
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -3,8 +3,13 @@ name: CI
3
3
on:
4
4
push:
5
5
branches:
6
+
- master
6
7
- main
7
8
pull_request:
9
+
branches:
10
+
- master
11
+
- main
12
+
workflow_dispatch:
8
13
9
14
jobs:
10
15
linux-build-test:
@@ -38,12 +43,11 @@ jobs:
38
43
- name: Checkout
39
44
uses: actions/checkout@v4
40
45
41
-
- name: Setup MSVC developer command prompt
42
-
uses: ilammy/msvc-dev-cmd@v1
43
-
44
46
- name: Build and run tests
45
47
shell: cmd
46
48
run: |
49
+
for /f "usebackq tokens=*" %%i in (`"%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" -latest -property installationPath`) do set VS_INSTALL=%%i
0 commit comments