-
Notifications
You must be signed in to change notification settings - Fork 122
45 lines (37 loc) · 965 Bytes
/
ci.yml
File metadata and controls
45 lines (37 loc) · 965 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: CI CPU
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
# runs-on: self-hosted
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Free disk space
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf /usr/local/lib/android
sudo rm -rf /opt/ghc
sudo rm -rf "/usr/local/share/boost"
- name: Install dependencies
run: |
pip install --no-cache-dir pytest
pip install --no-cache-dir -r requirements.txt
sudo apt-get update && sudo apt-get install ffmpeg libsm6 libxext6 -y
- name: Build and install
run: pip install --no-cache-dir .
- name: Run tests
# run: python -m pytest
run: python -m pytest tests/ -s