FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
ffmpeg-python/.github/workflows/ci.yml at master · sdlylpj/ffmpeg-python · GitHub
sdlylpj
/
ffmpeg-python
Public
forked from
kkroening/ffmpeg-python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
ffmpeg-python
/
.github
/
workflows
/
ci.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
45 lines (45 loc) · 1.21 KB
Breadcrumbs
ffmpeg-python
/
.github
/
workflows
/
ci.yml
Copy path
File metadata and controls
45 lines (45 loc) · 1.21 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
on
:
-
push
-
pull_request
jobs
:
test
:
runs-on
:
ubuntu-20.04
strategy
:
fail-fast
:
false
matrix
:
python-version
:
-
"
2.7
"
-
"
3.5
"
-
"
3.6
"
-
"
3.7
"
-
"
3.8
"
-
"
3.9
"
-
"
3.10
"
steps
:
-
uses
:
actions/checkout@v3
-
name
:
Set up Python ${{ matrix.python-version }}
uses
:
actions/setup-python@v4
with
:
python-version
:
${{ matrix.python-version }}
-
name
:
Install ffmpeg
run
:
|
sudo apt update
sudo apt install ffmpeg
-
name
:
Setup pip + tox
run
:
|
python -m pip install --upgrade \
"pip==20.3.4; python_version < '3.6'" \
"pip==21.3.1; python_version >= '3.6'"
python -m pip install tox==3.24.5 tox-gh-actions==2.9.1
-
name
:
Test with tox
run
:
tox
black
:
runs-on
:
ubuntu-20.04
steps
:
-
uses
:
actions/checkout@v3
-
name
:
Black
run
:
|
# TODO: use standard `psf/black` action after dropping Python 2 support.
pip install black==21.12b0 click==8.0.2 # https://stackoverflow.com/questions/71673404
black ffmpeg --check --color --diff
Back
|
FazBrowse Home
|
New Git URL