Skip to content

Commit 57f7467

Browse files
committed
[CI] add github workflow to test a basic install on cpu
1 parent 3af9d0c commit 57f7467

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
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 --cpu

0 commit comments

Comments
 (0)