style: Rename mentions of DataSet
to Dataset
in kedro-airflow
and kedro-telemetry
#503
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-airflow | |
on: | |
workflow_call: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- "kedro-datasets/**" | |
- "kedro-docker/**" | |
- "kedro-telemetry/**" | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- "kedro-datasets/**" | |
- "kedro-docker/**" | |
- "kedro-telemetry/**" | |
jobs: | |
unit-tests: | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, windows-latest ] | |
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ] | |
uses: ./.github/workflows/unit-tests.yml | |
with: | |
plugin: kedro-airflow | |
os: ${{ matrix.os }} | |
python-version: ${{ matrix.python-version }} | |
lint: | |
uses: ./.github/workflows/lint.yml | |
with: | |
plugin: kedro-airflow | |
os: ubuntu-latest | |
python-version: "3.11" | |
e2e-tests: | |
strategy: | |
matrix: | |
os: [ ubuntu-latest ] | |
python-version: [ "3.7", "3.8", "3.9", "3.10", "3.11" ] | |
uses: ./.github/workflows/e2e-tests.yml | |
with: | |
plugin: kedro-airflow | |
os: ${{ matrix.os }} | |
python-version: ${{ matrix.python-version }} |