-
Notifications
You must be signed in to change notification settings - Fork 0
121 lines (116 loc) · 3.77 KB
/
ci.yml
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
name: Continuous Integration
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
venv:
name: Create virtual environment
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4.1.1
- name: Set up Python
uses: actions/setup-python@v5.0.0
id: setup_python
with:
python-version: "3.8"
- name: Create virtual environment
uses: actions/cache@v4.0.2
with:
key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version }}-${{ github.run_id }}
restore-keys: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version }}
path: .venv
- name: Update Pip
run: |
python -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install --upgrade --upgrade-strategy eager .[dev,test] mypy types-setuptools
format:
name: Check formatting
runs-on: ubuntu-latest
needs: [venv]
steps:
- name: Checkout sources
uses: actions/checkout@v4.1.1
- name: Set up Python
uses: actions/setup-python@v5.0.0
id: setup_python
with:
python-version: "3.8"
- name: Cache virtual environment
uses: actions/cache@v4.0.2
with:
key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version }}-${{ github.run_id }}
path: .venv
- name: Check Python formatting
uses: psf/black@24.2.0
- name: Check JSON formatting
run: |
source .venv/bin/activate
pre-commit run check-json --all-files
- name: Check other formatting
run: |
source .venv/bin/activate
pre-commit run end-of-file-fixer --all-files
pre-commit run trailing-whitespace --all-files
lint:
name: Lint
runs-on: ubuntu-latest
needs: [venv]
steps:
- name: Checkout sources
uses: actions/checkout@v4.1.1
- name: Set up Python
uses: actions/setup-python@v5.0.0
id: setup_python
with:
python-version: "3.8"
- name: Cache virtual environment
uses: actions/cache@v4.0.2
with:
key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version}}-${{ github.run_id }}
path: .venv
- name: Lint with ruff
uses: chartboost/ruff-action@v1.0.0
- name: Lint with mypy
run: |
source .venv/bin/activate
mypy --ignore-missing-imports ssllabs
mypy --ignore-missing-imports tests
test:
name: Test with Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
needs: [format, lint]
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout sources
uses: actions/checkout@v4.1.1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5.0.0
id: setup_python
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
check-latest: true
- name: Use virtual environment
uses: actions/cache@v4.0.2
with:
key: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version}}-${{ github.run_id }}
restore-keys: venv-${{ runner.os }}-${{ steps.setup_python.outputs.python-version }}
path: .venv
- name: Install dependencies
run: |
python -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install --upgrade --upgrade-strategy eager .[test]
- name: Test with pytest
run: |
source .venv/bin/activate
pytest --cov=ssllabs