-
Notifications
You must be signed in to change notification settings - Fork 321
69 lines (66 loc) · 2.02 KB
/
python-threatexchange-ci.yaml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# Copyright (c) Meta Platforms, Inc. and affiliates.
name: python-threatexchange CI
on:
push:
branches:
- main
paths:
- "python-threatexchange/**"
- ".github/workflows/python-threatexchange-ci.yaml"
pull_request:
branches:
- main
paths:
- "python-threatexchange/**"
- ".github/workflows/python-threatexchange-ci.yaml"
defaults:
run:
working-directory: python-threatexchange
jobs:
lint-and-types:
name: Lint and Type-Check python
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install vpdq dependencies
run: |
sudo apt-get install -y python3-dev pkg-config cmake ffmpeg libavcodec-dev libavformat-dev libavdevice-dev libavutil-dev libswscale-dev libswresample-dev libavfilter-dev
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python3 -m pip install -e .[all]
- name: Check code format
run: |
black --check .
- name: Check python types
run: |
python -m mypy threatexchange
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.11', '3.12']
steps:
- uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install ffmpeg
id: ffmpeg
run: |
sudo apt-get update
sudo apt-get install ffmpeg
- name: Install vpdq dependencies
run: |
sudo apt-get install -y python3-dev pkg-config cmake ffmpeg libavcodec-dev libavformat-dev libavdevice-dev libavutil-dev libswscale-dev libswresample-dev libavfilter-dev
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[test]"
- name: Test with pytest
run: |
py.test