build: Add wizard GH action to remove label or close info needed issues #1209
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run checks on kedro-telemetry | |
on: | |
workflow_call: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- "kedro-airflow/**" | |
- "kedro-datasets/**" | |
- "kedro-docker/**" | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- "kedro-airflow/**" | |
- "kedro-datasets/**" | |
- "kedro-docker/**" | |
jobs: | |
unit-tests: | |
strategy: | |
matrix: | |
os: [ ubuntu-latest ] | |
python-version: [ "3.9", "3.10", "3.11", "3.12" ] | |
uses: ./.github/workflows/unit-tests.yml | |
with: | |
plugin: kedro-telemetry | |
os: ${{ matrix.os }} | |
python-version: ${{ matrix.python-version }} | |
lint: | |
uses: ./.github/workflows/lint.yml | |
with: | |
plugin: kedro-telemetry | |
os: ubuntu-latest | |
python-version: "3.11" |