Skip to content

Build DataflowPlan for custom offset window #5907

Build DataflowPlan for custom offset window

Build DataflowPlan for custom offset window #5907

Workflow file for this run

name: Pre-Merge Linting
on:
workflow_dispatch:
# run these jobs against the PR + master. To run tests against just the PR, use "push" instead of "pull_request"
pull_request:
# run these jobs when a PR is opened, edited, reopened, or updated (synchronize)
# edited = title, body, or the base branch of the PR is modified
# synchronize = commit(s) pushed to the pull request
types:
- opened
- edited
- reopened
- synchronize
jobs:
pre-commit:
name: Run Pre-Commit Linting Hooks
runs-on: ubuntu-latest
env:
python-version: "3.8"
steps:
- name: Check-out the repo
uses: actions/checkout@v4
- name: Setup Python ${{ env.python-version }} Environment
uses: ./.github/actions/setup-python-env
with:
python-version: "${{ env.python-version }}"
hatch-environment-cache-config-json: >-
{
"configs": [
{"hatch_project_directory": ".", "hatch_environment_name": "dev-env"}
]
}
cache-pre-commit-environment: true
- name: Run Linter
run: >
hatch -v run dev-env:pre-commit run --verbose --show-diff-on-failure --color=always --all-files