Skip to content

Commit 27281bb

Browse files
committed
test workflow
1 parent d1b632a commit 27281bb

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

.github/workflows/static-gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: install dependencies pip
2121
run: |
2222
python3 -m pip install -U pip
23-
bash scripts/install.sh --cpu
23+
bash scripts/install.sh --cpu -m detectron2 --no-weights
2424
python3 -m pip install .[doc]
2525
2626
- name: make docs
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: basic install
2+
3+
on: [push, pull_request]
4+
jobs:
5+
docs_to_gh-pages:
6+
runs-on: ubuntu-latest
7+
name: basic install of compressai-vision (torch cpu)
8+
steps:
9+
- uses: actions/checkout@v2
10+
with:
11+
submodules: recursive
12+
- name: Setup Python
13+
uses: actions/setup-python@v2
14+
with:
15+
python-version: '3.8'
16+
17+
- name: install dependencies pip
18+
run: |
19+
python3 -m pip install -U pip
20+
bash scripts/install.sh -m detectron2 --no-weights

0 commit comments

Comments
 (0)