Skip to content

Commit 1403036

Browse files
gh-27: Add GH Actions workflow.
1 parent 9eb6fe6 commit 1403036

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/ci.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
shell: powershell
25+
run: |
26+
.\prefix.exe .\tests\test2.pre

0 commit comments

Comments
 (0)