Skip to content

Commit 0d48c9c

Browse files
committed
disable some workflows
1 parent 4e4be0b commit 0d48c9c

File tree

5 files changed

+9
-0
lines changed

5 files changed

+9
-0
lines changed

.github/workflows/32-bit-linux.yml

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ permissions:
1717

1818
jobs:
1919
pytest:
20+
if: false
2021
runs-on: ubuntu-22.04
2122
steps:
2223
- name: Checkout

.github/workflows/code-checks.yml

+5
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ permissions:
1919

2020
jobs:
2121
pre_commit:
22+
if: false
2223
name: pre-commit
2324
runs-on: ubuntu-22.04
2425
concurrency:
@@ -40,6 +41,7 @@ jobs:
4041
extra_args: --verbose --all-files
4142

4243
docstring_typing_manual_hooks:
44+
if: false
4345
name: Docstring validation, typing, and other manual pre-commit hooks
4446
runs-on: ubuntu-22.04
4547
defaults:
@@ -103,6 +105,7 @@ jobs:
103105
if: ${{ steps.build.outcome == 'success' && always() }}
104106

105107
asv-benchmarks:
108+
if: false
106109
name: ASV Benchmarks
107110
runs-on: ubuntu-22.04
108111
defaults:
@@ -134,6 +137,7 @@ jobs:
134137
asv run --quick --dry-run --strict --durations=30 --python=same
135138
136139
build_docker_dev_environment:
140+
if: false
137141
name: Build Docker Dev Environment
138142
runs-on: ubuntu-22.04
139143
defaults:
@@ -161,6 +165,7 @@ jobs:
161165
run: docker run --rm pandas-dev-env python -c "import pandas as pd; print(pd.show_versions())"
162166

163167
requirements-dev-text-installable:
168+
if: false
164169
name: Test install requirements-dev.txt
165170
runs-on: ubuntu-22.04
166171

.github/workflows/docbuild-and-upload.yml

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ permissions:
2121

2222
jobs:
2323
web_and_docs:
24+
if: false
2425
name: Doc Build and Upload
2526
runs-on: ubuntu-22.04
2627

.github/workflows/macos-windows.yml

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ permissions:
2424

2525
jobs:
2626
pytest:
27+
if: false
2728
defaults:
2829
run:
2930
shell: bash -el {0}

.github/workflows/python-dev.yml

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ permissions:
4444

4545
jobs:
4646
build:
47+
if: false
4748
# if: false # Uncomment this to freeze the workflow, comment it to unfreeze
4849
runs-on: ${{ matrix.os }}
4950
strategy:

0 commit comments

Comments
 (0)