added build workflow
Browse files- .github/workflows/build.yaml +19 -0
.github/workflows/build.yaml
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: Build
|
2 |
+
|
3 |
+
on:
|
4 |
+
push:
|
5 |
+
branches: [ master ]
|
6 |
+
pull_request:
|
7 |
+
branches: [ master ]
|
8 |
+
|
9 |
+
jobs:
|
10 |
+
build:
|
11 |
+
steps:
|
12 |
+
- uses: actions/checkout@v2
|
13 |
+
|
14 |
+
- name: Install program
|
15 |
+
run: pip install git+https://github.com/andreped/livermask.git
|
16 |
+
|
17 |
+
- name: Test CLI
|
18 |
+
run: livermask --help
|
19 |
+
|