forked from TheQmaks/phantom-frida
-
Notifications
You must be signed in to change notification settings - Fork 3
69 lines (55 loc) · 1.64 KB
/
Copy pathci.yml
File metadata and controls
69 lines (55 loc) · 1.64 KB
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
name: CI
on:
pull_request:
push:
branches:
- master
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
quality:
name: quality
runs-on: ubuntu-22.04
timeout-minutes: 15
steps:
- name: Check out repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@5fda3b95a4ea91299a34e894583c3862153e4b97 # v7.0.0
with:
python-version: "3.12"
cache: pip
cache-dependency-path: requirements-dev.txt
- name: Set up Node.js
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7
with:
node-version: "24.13.1"
cache: npm
- name: Install test dependencies
run: |
python -m pip install --requirement requirements-dev.txt
npm ci --ignore-scripts
- name: Run Python tests
run: |
python -m pytest \
--cov=build \
--cov=patches \
--cov=namegen \
--cov=scripts.android_smoke \
--cov-report=term-missing
- name: Run Ruff
run: ruff check .
- name: Run mypy
run: mypy build.py patches.py namegen.py scripts
- name: Check JavaScript syntax
run: node --check test_comprehensive.js
- name: Check shell syntax
run: bash -n build-wsl.sh
- name: Validate workflows
run: go run github.com/rhysd/actionlint/cmd/actionlint@v1.7.12