We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bda09b3 commit 8bbb945Copy full SHA for 8bbb945
.github/workflows/main-workflow.yml
@@ -17,8 +17,7 @@ jobs:
17
python -m pip install --upgrade pip
18
python -m pip install -r requirements.txt
19
- name: Lint
20
- run: |
21
- ./ci/lint.sh
+ run: ./ci/lint.sh
22
23
Testing:
24
runs-on: ubuntu-latest
@@ -36,3 +35,21 @@ jobs:
36
35
run: |
37
python -m pip install .
38
python -m pytest --verbose .
+
39
+ Installation:
40
+ runs-on: ubuntu-latest
41
+ steps:
42
+ - uses: actions/checkout@v2
43
+ - name: Set up Python 3.6
44
+ uses: actions/setup-python@v2
45
+ with:
46
+ python-version: 3.6
47
+ - name: Install library
48
+ run: python -m pip install .
49
+ - name: Basic test of CLI-tools
50
+ run: |
51
+ cd $(mktemp -d)
52
+ python -m timelapse.launch -h
53
+ python -m timelapse.process -h
54
55
0 commit comments