Skip to content

Commit 1eba975

Browse files
authored
Create main.yml
1 parent 4893b0b commit 1eba975

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/main.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Windows Build Test
2+
on:
3+
workflow_dispatch
4+
5+
jobs:
6+
build:
7+
runs-on: windows-latest
8+
steps:
9+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
10+
- name: Checkout The PR
11+
uses: actions/checkout@v2
12+
13+
- name: Install Conda
14+
uses: conda-incubator/[email protected]
15+
16+
- name: Install PDAL
17+
shell: pwsh
18+
run: conda install -c conda-forge pdal
19+
20+
- name: Build
21+
shell: cmd
22+
run: |
23+
set TOOLCHAIN=""
24+
make
25+
26+
- name: Test
27+
shell: cmd
28+
run: test_pdalc.exe
29+

0 commit comments

Comments
 (0)