FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
openapi-core/.github/workflows/python-tests.yml at master · python-openapi/openapi-core · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
python-openapi
/
openapi-core
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
141
Star
369
Code
Issues
69
Pull requests
36
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
openapi-core
/
.github
/
workflows
/
python-tests.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
125 lines (103 loc) · 3.71 KB
Breadcrumbs
openapi-core
/
.github
/
workflows
/
python-tests.yml
Copy path
File metadata and controls
125 lines (103 loc) · 3.71 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
122
123
124
125
#
This workflow will install Python dependencies, run tests and lint with a variety of Python versions
#
For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name
:
CI / Core / Tests
on
:
push
:
paths-ignore
:
-
README.md
-
openapi_core/contrib/**
-
tests/integration/contrib/**
-
tests/unit/contrib/**
-
docs/integrations/**
-
.github/workflows/contrib-tests.yml
pull_request
:
types
:
[opened, synchronize]
paths-ignore
:
-
README.md
-
openapi_core/contrib/**
-
tests/integration/contrib/**
-
tests/unit/contrib/**
-
docs/integrations/**
-
.github/workflows/contrib-tests.yml
permissions
:
contents
:
read
jobs
:
core_tests
:
name
:
"
py${{ matrix.python-version }}
"
runs-on
:
ubuntu-latest
strategy
:
matrix
:
python-version
:
["3.10", "3.11", "3.12", "3.13", "3.14"]
fail-fast
:
false
steps
:
-
uses
:
actions/checkout@v6
-
name
:
Set up Python ${{ matrix.python-version }}
uses
:
actions/setup-python@v6
with
:
python-version
:
${{ matrix.python-version }}
-
name
:
Get full Python version
id
:
full-python-version
run
:
python -c "import sys; print(f\"version={'-'.join(str(v) for v in sys.version_info)}\")" >> "$GITHUB_OUTPUT"
-
name
:
Set up poetry
uses
:
Gr1N/setup-poetry@v9
with
:
poetry-version
:
"
2.3.1
"
-
name
:
Configure poetry
run
:
poetry config virtualenvs.in-project true
-
name
:
Set up cache
uses
:
actions/cache@v5
id
:
cache
with
:
path
:
|
~/.cache/pypoetry
~/.cache/pip
key
:
deps-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-core-tests-${{ hashFiles('**/poetry.lock') }}
restore-keys
:
|
deps-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-core-tests-
deps-${{ runner.os }}-${{ matrix.python-version }}-
-
name
:
Install dependencies
run
:
poetry install --all-extras
-
name
:
Test
env
:
PYTEST_ADDOPTS
:
"
--color=yes
"
run
:
poetry run pytest --ignore=tests/integration/contrib --ignore=tests/unit/contrib
-
name
:
Static type check
run
:
poetry run mypy
-
name
:
Check dependencies
run
:
poetry run deptry .
-
name
:
Upload coverage
uses
:
codecov/codecov-action@v6
static_checks
:
name
:
"
Core / Static Checks
"
runs-on
:
ubuntu-latest
steps
:
-
name
:
"
Checkout ${{ github.ref }} ( ${{ github.sha }} )
"
uses
:
actions/checkout@v6
-
name
:
"
Setup Python
"
uses
:
actions/setup-python@v6
with
:
python-version
:
"
3.10
"
-
name
:
Get full Python version
id
:
full-python-version
run
:
python -c "import sys; print(f\"version={'-'.join(str(v) for v in sys.version_info)}\")" >> "$GITHUB_OUTPUT"
-
name
:
Set up poetry
uses
:
Gr1N/setup-poetry@v9
with
:
poetry-version
:
"
2.3.1
"
-
name
:
Configure poetry
run
:
poetry config virtualenvs.in-project true
-
name
:
Set up cache
uses
:
actions/cache@v5
id
:
cache
with
:
path
:
|
~/.cache/pypoetry
~/.cache/pip
key
:
deps-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-static-checks-${{ hashFiles('**/poetry.lock') }}
restore-keys
:
|
deps-${{ runner.os }}-${{ steps.full-python-version.outputs.version }}-static-checks-
deps-${{ runner.os }}-3.10-
-
name
:
Install dependencies
run
:
poetry install
-
name
:
Run static checks
run
:
poetry run pre-commit run -a
Back
|
FazBrowse Home
|
New Git URL