Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MAINTENANCE] Prettier yaml formatting #9562

Merged
merged 9 commits into from
Mar 4, 2024
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 7 additions & 7 deletions .coderabbit.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Only enables summaries for PRs. Disables auto-review
language: "en"
language: 'en'
early_access: false
reviews:
request_changes_workflow: false
Expand All @@ -8,16 +8,16 @@ reviews:
review_status: true
collapse_walkthrough: false
path_filters:
- "!**/.xml"
- "great_expectations/**"
- '!**/.xml'
- 'great_expectations/**'
auto_review:
enabled: false
ignore_title_keywords:
- "WIP"
- "DO NOT MERGE"
- 'WIP'
- 'DO NOT MERGE'
drafts: false
base_branches:
- "develop"
- "feat/*"
- 'develop'
- 'feat/*'
chat:
auto_reply: true
70 changes: 35 additions & 35 deletions .github/teams.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,47 +3,47 @@

dx:
- '@Shinnnyshinshin' # Will Shin
- '@anthonyburdi' # Anthony Burdi
- '@anthonyburdi' # Anthony Burdi

devrel:
- '@Rachel-Reverie' # Rachel Reverie
- '@austiezr' # Austin Robinson
- '@kwcanuck' # Rob Gray
- '@kyleaton' # Kyle Eaton
- '@rachhouse' # Rachel House
- '@talagluck' # Tal Gluck
- '@r34ctor' # Nevin Tan
- '@Rachel-Reverie' # Rachel Reverie
- '@austiezr' # Austin Robinson
- '@kwcanuck' # Rob Gray
- '@kyleaton' # Kyle Eaton
- '@rachhouse' # Rachel House
- '@talagluck' # Tal Gluck
- '@r34ctor' # Nevin Tan

core:
- '@DrewHoo' # Drew Hoover
- '@Erin-GX' # Erin Kapp
- '@HaebichanGX' # Haebichan Jung
- '@JennyTee' # Jenny Terlinden
- '@Kilo59' # Gabriel Gore
- '@NathanFarmer' # Nathan Farmer
- '@DrewHoo' # Drew Hoover
- '@Erin-GX' # Erin Kapp
- '@HaebichanGX' # Haebichan Jung
- '@JennyTee' # Jenny Terlinden
- '@Kilo59' # Gabriel Gore
- '@NathanFarmer' # Nathan Farmer
- '@Shinnnyshinshin' # Will Shin
- '@Super-Tanner' # Tanner Beam
- '@TrangPham' # Thu Pham
- '@abegong' # Abe Gong
- '@allensallinger' # Allen Sallinger
- '@anthonyburdi' # Anthony Burdi
- '@billdirks' # Bill Dirks
- '@cdkini' # Chetan Kini
- '@dctalbot' # David Talbot
- '@donaldheppner' # Don Heppner
- '@elenajdanova' # Elena Jdanova
- '@jcampbell' # James Campbell
- '@josectobar' # José Tobar
- '@Super-Tanner' # Tanner Beam
- '@TrangPham' # Thu Pham
- '@abegong' # Abe Gong
- '@allensallinger' # Allen Sallinger
- '@anthonyburdi' # Anthony Burdi
- '@billdirks' # Bill Dirks
- '@cdkini' # Chetan Kini
- '@dctalbot' # David Talbot
- '@donaldheppner' # Don Heppner
- '@elenajdanova' # Elena Jdanova
- '@jcampbell' # James Campbell
- '@josectobar' # José Tobar
- '@joshua-stauffer' # Josh Stauffer
- '@joshzzheng' # Josh Zheng
- '@jshaikGX' # Javed Shaik
- '@lockettks' # Kim Mathieu
- '@nicgrayson' # Nic Grayson
- '@roblim' # Rob Lim
- '@rreinoldsc' # Robby Reinold
- '@sujensen' # Susan Jensen
- '@tyler-hoffman' # Tyler Hoffman
- '@wookasz' # Łukasz Lempart
- '@joshzzheng' # Josh Zheng
- '@jshaikGX' # Javed Shaik
- '@lockettks' # Kim Mathieu
- '@nicgrayson' # Nic Grayson
- '@roblim' # Rob Lim
- '@rreinoldsc' # Robby Reinold
- '@sujensen' # Susan Jensen
- '@tyler-hoffman' # Tyler Hoffman
- '@wookasz' # Łukasz Lempart

bot:
- '@dependabot'
Expand Down
127 changes: 64 additions & 63 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ on:
- ready_for_review
schedule:
# https://crontab.guru/every-3-hours
- cron: "0 */3 * * *"
workflow_dispatch: # allows manual triggering with branch picker
- cron: '0 */3 * * *'
workflow_dispatch: # allows manual triggering with branch picker
push:
# Semantic versioning syntax defined by PyPI: https://pythonpackaging.info/07-Package-Release.html#Versioning-your-code
tags:
Expand Down Expand Up @@ -59,8 +59,8 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
cache: "pip"
python-version: '3.8'
cache: 'pip'
cache-dependency-path: |
requirements-types.txt
reqs/requirements-dev-contrib.txt
Expand Down Expand Up @@ -151,8 +151,8 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
cache: "pip"
python-version: '3.8'
cache: 'pip'
cache-dependency-path: |
reqs/requirements-dev-test.txt
- name: Install dependencies
Expand All @@ -166,7 +166,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ['3.8', '3.9', '3.10', '3.11']

runs-on: ${{ matrix.os }}

Expand Down Expand Up @@ -198,8 +198,8 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
cache: "pip"
python-version: '3.8'
cache: 'pip'
cache-dependency-path: |
reqs/requirements-dev-test.txt
- name: Install dependencies
Expand Down Expand Up @@ -236,8 +236,8 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
cache: "pip"
python-version: '3.8'
cache: 'pip'
cache-dependency-path: reqs/requirements-dev-test.txt
- name: Install dependencies
run: pip install -r reqs/requirements-dev-test.txt
Expand Down Expand Up @@ -276,7 +276,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
python-version: '3.8'
cache-dependency-path: |
reqs/requirements-dev-test.txt
setup.py
Expand Down Expand Up @@ -309,12 +309,11 @@ jobs:
- name: Run the tests
run: invoke ci-tests 'cloud' --up-services --verbose


marker-tests:
needs: [unit-tests, static-analysis]
if: github.event.pull_request.draft == false
env:
# aws
# aws
AWS_ACCESS_KEY_ID: ${{secrets.AWS_ACCESS_KEY_ID}}
AWS_DEFAULT_REGION: ${{secrets.AWS_DEFAULT_REGION}}
AWS_SECRET_ACCESS_KEY: ${{secrets.AWS_SECRET_ACCESS_KEY}}
Expand Down Expand Up @@ -345,7 +344,7 @@ jobs:
- snowflake
- spark
- trino
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ['3.8', '3.9', '3.10', '3.11']
exclude:
# TODO: would like to adopt `actionlint` pre-commit hook
# but false positive here and inability to do an inline ignore
Expand All @@ -363,7 +362,7 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache: 'pip'
cache-dependency-path: |
reqs/requirements-dev-test.txt
setup.py
Expand All @@ -386,8 +385,8 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
cache: "pip"
python-version: '3.8'
cache: 'pip'
cache-dependency-path: reqs/requirements-dev-test.txt
- name: Install dependencies
run: pip install . -c ci/constraints-test/py38-min-install.txt -r reqs/requirements-dev-test.txt
Expand All @@ -404,8 +403,8 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
cache: "pip"
python-version: '3.9'
cache: 'pip'
cache-dependency-path: reqs/requirements-dev-test.txt
- name: Install dependencies
run: pip install . -c ci/constraints-test/py39-min-install.txt -r reqs/requirements-dev-test.txt
Expand All @@ -422,8 +421,8 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "pip"
python-version: '3.10'
cache: 'pip'
cache-dependency-path: reqs/requirements-dev-test.txt
- name: Install dependencies
run: pip install . -c ci/constraints-test/py310-min-install.txt -r reqs/requirements-dev-test.txt
Expand All @@ -440,8 +439,8 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: "pip"
python-version: '3.11'
cache: 'pip'
cache-dependency-path: reqs/requirements-dev-test.txt
- name: Install dependencies
run: pip install . -c ci/constraints-test/py311-min-install.txt -r reqs/requirements-dev-test.txt
Expand All @@ -458,8 +457,8 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
cache: "pip"
python-version: '3.8'
cache: 'pip'
cache-dependency-path: reqs/requirements-dev-test.txt
- name: Install dependencies
run: pip install . -c ci/constraints-test/pydantic-v1-install.txt -r reqs/requirements-dev-test.txt
Expand All @@ -475,8 +474,8 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
cache: "pip"
python-version: '3.8'
cache: 'pip'
cache-dependency-path: requirements.txt
- name: Install dependencies
run: pip install . -c ci/constraints-test/airflow-min-install.txt
Expand All @@ -490,7 +489,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ['3.8', '3.9', '3.10', '3.11']
exclude:
- python-version: ${{ github.event_name == 'pull_request' && '3.9' }}
- python-version: ${{ github.event_name == 'pull_request' && '3.10' }}
Expand All @@ -501,30 +500,31 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
cache: 'pip'
cache-dependency-path: requirements.txt
- name: Install Great Expectations with core deps only
run: pip install .
- name: Import Great Expectations
run: python -c "import great_expectations as gx; print('Successfully imported GX Version:', gx.__version__)"

build-n-publish:
needs: [
ci-is-on-main-repo,
doc-checks,
static-analysis,
docs-snippets,
unit-tests,
cloud-tests,
marker-tests,
py38-min-versions,
py39-min-versions,
py310-min-versions,
py311-min-versions,
pydantic-v1,
airflow-min-versions,
import_gx,
]
needs:
[
ci-is-on-main-repo,
doc-checks,
static-analysis,
docs-snippets,
unit-tests,
cloud-tests,
marker-tests,
py38-min-versions,
py39-min-versions,
py310-min-versions,
py311-min-versions,
pydantic-v1,
airflow-min-versions,
import_gx,
]
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
name: Build and publish Python distributions to PyPI
runs-on: ubuntu-latest
Expand Down Expand Up @@ -556,23 +556,24 @@ jobs:
skip-existing: true # prevent against pushing duplicate versions

notify_on_failure:
needs: [
ci-is-on-main-repo,
doc-checks,
static-analysis,
docs-snippets,
unit-tests,
cloud-tests,
marker-tests,
py38-min-versions,
py39-min-versions,
py310-min-versions,
py311-min-versions,
pydantic-v1,
airflow-min-versions,
import_gx,
build-n-publish
]
needs:
[
ci-is-on-main-repo,
doc-checks,
static-analysis,
docs-snippets,
unit-tests,
cloud-tests,
marker-tests,
py38-min-versions,
py39-min-versions,
py310-min-versions,
py311-min-versions,
pydantic-v1,
airflow-min-versions,
import_gx,
build-n-publish,
]
if: always() && !cancelled() && contains(needs.*.result, 'failure') && github.event_name != 'pull_request' && github.event_name != 'merge_group'
runs-on: ubuntu-latest
steps:
Expand Down