File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44 black :
55 runs-on : ubuntu-latest
66 steps :
7- - uses : actions/checkout@v3
7+ - uses : actions/checkout@v7
88 - uses : psf/black@stable
99 isort :
1010 runs-on : ubuntu-latest
1111 steps :
12- - uses : actions/checkout@v3
13- - uses : actions/setup-python@v4
14- with :
15- python-version : 3.8
16- - uses : jamescurtin/isort-action@master
12+ - uses : actions/checkout@v7
13+ - uses : actions/setup-python@v6
14+ - run : pip install isort
15+ - run : isort --check-only --diff .
Original file line number Diff line number Diff line change 44 pyflakes :
55 runs-on : ubuntu-latest
66 steps :
7- - uses : actions/checkout@v3
7+ - uses : actions/checkout@v7
88 - run : pip install pyflakes
99 - run : pyflakes $(git ls-files '*.py' | grep -v '^frida/frida_bindgen/assets/')
1010 mypy :
1111 runs-on : ubuntu-latest
1212 steps :
13- - uses : actions/checkout@v3
13+ - uses : actions/checkout@v7
1414 - uses : jpetrucciani/mypy-check@master
1515 with :
1616 mypy_flags : ' --exclude examples --exclude setup --exclude frida/frida_bindgen/assets'
Original file line number Diff line number Diff line change 1515 - name : Build the extension
1616 run : make
1717 - name : Run the test suite
18- run : python3 -m unittest tests.test_bindgen -v
18+ env :
19+ PYTHONFAULTHANDLER : ' 1'
20+ run : |
21+ sudo sysctl -w kernel.yama.ptrace_scope=0
22+ timeout --signal=ABRT 300 python3 -m unittest tests.test_bindgen -v
You can’t perform that action at this time.
0 commit comments