-
-
Notifications
You must be signed in to change notification settings - Fork 6
53 lines (49 loc) · 1.33 KB
/
build.yml
File metadata and controls
53 lines (49 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: "Build and Test"
on:
pull_request:
jobs:
linux_build:
name: Build module on Linux
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@master
- run: ./Build/source-code-tests.ps1
name: "Pre_Test_On_Linux"
shell: pwsh
- run: ./Build/build.ps1
name: "Build_On_Linux"
shell: pwsh
- run: ./Build/post-build-tests.ps1
name: 'Post_Test_On_Linux'
shell: pwsh
windows_build:
name: Build module on Windows
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@master
- run: ./Build/source-code-tests.ps1
name: "Pre_Test_On_Windows"
shell: pwsh
- run: ./Build/build.ps1
name: "Build_On_Windows"
shell: pwsh
- run: ./Build/post-build-tests.ps1
name: 'Post_Test_On_Windows'
shell: pwsh
macos_build:
name: Build module on MacOS
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@master
- run: ./Build/source-code-tests.ps1
name: "Pre_Test_On_MacOS"
shell: pwsh
- run: ./Build/build.ps1
name: "Build_On_MacOS"
shell: pwsh
- run: ./Build/post-build-tests.ps1
name: 'Post_Test_On_MacOS'
shell: pwsh