-
Notifications
You must be signed in to change notification settings - Fork 44
91 lines (88 loc) · 2.43 KB
/
Copy pathpython-package-10.yml
File metadata and controls
91 lines (88 loc) · 2.43 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
name: CI build 10 - (Ubuntu ARM64)
on:
schedule:
- cron: "42 */4 * * *"
push:
branches: [ master ]
pull_request:
branches:
workflow_dispatch:
branches:
jobs:
build:
env:
PY_COLORS: "1"
strategy:
fail-fast: false
max-parallel: 1
matrix:
os: [ubuntu-24.04-arm]
python-version: ["3.14"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel setuptools pipdeptree
# This installs SeleniumBase
pip install -r requirements.txt
- name: Lint with flake8
run: |
pip install flake8
# Stop the build if there are flake8 issues
flake8 . --count --show-source --statistics --exclude=temp
- name: Check the console scripts interface (methods)
run: |
seleniumbase methods
sbase methods
- name: Check the console scripts interface
run: |
seleniumbase
sbase
- name: Install chromium
run: |
sudo apt-get install -y chromium
- name: List dependencies
run: |
pipdeptree
- name: Get CPU count
run: |
echo "import os; print(os.cpu_count())" > get_cpu_count.py
python get_cpu_count.py
- name: Get platform info
run: |
python platform_check.py
- name: Run python raw_mfa_login.py
run: |
python raw_mfa_login.py
- name: Run python raw_wsform.py --debug
run: |
python raw_wsform.py --debug
- name: Upload logs for WSForm
uses: actions/upload-artifact@v6
with:
name: seleniumbase-logs-for-wsform
path: |
./latest_logs/
- name: Run python raw_consultapublica.py --debug
run: |
python raw_consultapublica.py --debug
- name: Upload logs for consultapublica
uses: actions/upload-artifact@v6
with:
name: seleniumbase-logs-for-consultapublica
path: |
./latest_logs/
- name: Run python raw_serienstream.py --debug
run: |
python raw_serienstream.py --debug
- name: Upload logs for serienstream
uses: actions/upload-artifact@v6
with:
name: seleniumbase-logs-for-serienstream
path: |
./latest_logs/