forked from pandas-dev/pandas
-
Notifications
You must be signed in to change notification settings - Fork 0
147 lines (120 loc) · 3.65 KB
/
Copy pathcode-checks.yml
File metadata and controls
147 lines (120 loc) · 3.65 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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
name: Code Checks
on:
push:
branches:
- main
- 3.0.x
pull_request:
branches:
- main
- 3.0.x
defaults:
run:
shell: bash -euox pipefail {0}
permissions: {}
jobs:
doctest:
name: Doctests
runs-on: ubuntu-24.04
permissions:
contents: read
concurrency:
# https://github.community/t/concurrecy-not-work-for-push/183068/7
group: ${{ github.event_name == 'push' && github.run_number || github.ref }}-doctests
cancel-in-progress: true
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
fetch-depth: 0
- name: Create virtual environment with Pixi
uses: ./.github/actions/setup-pixi
with:
environment: "doctests"
- name: Build pandas
run: |
pixi run \
--environment doctests \
build-pandas \
--editable \
-Csetup-args="--werror"
- name: Run doctests
run: pixi run --environment doctests ci-doctests
- name: Run scripts tests
run: pixi run --environment doctests ci-scripts-tests
type-checking:
name: Type Checking
runs-on: ubuntu-24.04
permissions:
contents: read
concurrency:
# https://github.community/t/concurrecy-not-work-for-push/183068/7
group: ${{ github.event_name == 'push' && github.run_number || github.ref }}-typechecking
cancel-in-progress: true
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
fetch-depth: 0
- name: Create virtual environment with Pixi
uses: ./.github/actions/setup-pixi
with:
environment: "typing"
- name: Build pandas
run: |
pixi run \
--environment typing \
build-pandas \
--editable \
-Csetup-args="--werror"
- name: Typing Checks
run: pixi run --environment typing ci-typing
asv-benchmarks:
name: ASV Benchmarks
runs-on: ubuntu-24.04
permissions:
contents: read
concurrency:
# https://github.community/t/concurrecy-not-work-for-push/183068/7
group: ${{ github.event_name == 'push' && github.run_number || github.ref }}-asv-benchmarks
cancel-in-progress: true
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
fetch-depth: 0
- name: Create virtual environment with Pixi
uses: ./.github/actions/setup-pixi
with:
environment: "asv"
- name: Build pandas
run: |
pixi run \
--environment asv \
build-pandas \
--editable \
-Csetup-args="--werror"
- name: Run ASV benchmarks
run: pixi run --environment asv ci-asv
requirements-dev-text-installable:
name: Test install requirements-dev.txt
runs-on: ubuntu-24.04
permissions:
contents: read
concurrency:
# https://github.community/t/concurrecy-not-work-for-push/183068/7
group: ${{ github.event_name == 'push' && github.run_number || github.ref }}-requirements-dev-text-installable
cancel-in-progress: true
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Setup Python
id: setup_python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
with:
python-version: '3.11'
cache: 'pip'
pip-install: '-r requirements-dev.txt'
cache-dependency-path: 'requirements-dev.txt'
- name: Check Pip Cache Hit
run: echo ${{ steps.setup_python.outputs.cache-hit }}