We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e92f030 commit fc0a12fCopy full SHA for fc0a12f
.github/workflows/test.yaml
@@ -14,6 +14,7 @@ jobs:
14
fail-fast: false
15
matrix:
16
python-version: [3.7, 3.8, 3.9]
17
+ airflow-version: ['1.10.12', '2.0.2', '2.2.2']
18
runs-on: ubuntu-latest
19
steps:
20
- uses: actions/checkout@v2
@@ -25,8 +26,10 @@ jobs:
25
26
uses: abatilo/actions-poetry@v2.1.4
27
with:
28
poetry-version: 1.1.12
29
+ - name: Install Airflow ${{ matrix.airflow-version }}
30
+ run: python -m pip install apache-airflow==${{ matrix.airflow-version }}
31
- name: Install airflow-dbt-python with Poetry
- run: poetry install -E amazon -E postgres -E airflow
32
+ run: poetry install -E amazon -E postgres
33
- name: Style guide enforcement with flake8
34
run: poetry run flake8 .
35
- name: Static type checking with mypy
0 commit comments