We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9eb6fe6 commit 1403036Copy full SHA for 1403036
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,26 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
7
+jobs:
8
+ build-and-test:
9
+ runs-on: windows-latest
10
11
+ steps:
12
+ - name: Checkout code
13
+ uses: actions/checkout@v4
14
15
+ - name: Setup Visual Studio
16
+ uses: microsoft/setup-msbuild@v1.1
17
18
+ - name: Build interpreter and extensions
19
+ shell: powershell
20
+ run: |
21
+ .\build.ps1
22
23
+ - name: Run tests
24
25
26
+ .\prefix.exe .\tests\test2.pre
0 commit comments