This repository was archived by the owner on Dec 15, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +43
-3
lines changed Expand file tree Collapse file tree 3 files changed +43
-3
lines changed Original file line number Diff line number Diff line change
1
+ name : test-install-linux
2
+
3
+ on :
4
+ pull_request :
5
+ push :
6
+ branches : [ main ]
7
+
8
+ jobs :
9
+ test-install-script :
10
+ name : Test install script for ${{ matrix.os }}
11
+ runs-on : ${{ matrix.os }}
12
+ strategy :
13
+ matrix :
14
+ include :
15
+ - os : ubuntu-latest
16
+ steps :
17
+ - uses : actions/checkout@v2
18
+ - name : test install script
19
+ run : |
20
+ curl -s https://raw.githubusercontent.com/francis-du/iotdb-cli/main/install.sh | sh
21
+ curl -s https://raw.githubusercontent.com/francis-du/iotdb-cli/main/install.sh | sh
Original file line number Diff line number Diff line change
1
+ name : test-install-mac
2
+
3
+ on :
4
+ pull_request :
5
+ push :
6
+ branches : [ main ]
7
+
8
+ jobs :
9
+ test-install-script :
10
+ name : Test install script for ${{ matrix.os }}
11
+ runs-on : ${{ matrix.os }}
12
+ strategy :
13
+ matrix :
14
+ include :
15
+ - os : macos-latest
16
+ steps :
17
+ - uses : actions/checkout@v2
18
+ - name : test install script
19
+ run : |
20
+ curl -s https://raw.githubusercontent.com/francis-du/iotdb-cli/main/install.sh | sh
21
+ curl -s https://raw.githubusercontent.com/francis-du/iotdb-cli/main/install.sh | sh
Original file line number Diff line number Diff line change 1
- name : test-install-script
1
+ name : test-install-win
2
2
3
3
on :
4
4
pull_request :
12
12
strategy :
13
13
matrix :
14
14
include :
15
- - os : ubuntu-latest
16
15
- os : windows-latest
17
- - os : macos-latest
18
16
steps :
19
17
- uses : actions/checkout@v2
20
18
- name : test install script
You can’t perform that action at this time.
0 commit comments