-
-
Notifications
You must be signed in to change notification settings - Fork 36
191 lines (168 loc) · 5.89 KB
/
ci.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
name: CI
on:
push:
branches: [ master ]
paths:
- '**.py'
- '!airflow_dbt_python/__version__.py'
tags:
- "v*"
pull_request:
branches:
- master
paths:
- '**.py'
- '!airflow_dbt_python/__version__.py'
jobs:
test:
name: Test on Python ${{ matrix.python-version }} and Airflow ${{ matrix.airflow-version }} and dbt ${{ matrix.dbt-version }}
strategy:
fail-fast: false
matrix:
python-version:
- '3.12'
- '3.11'
- '3.10'
- '3.9'
- '3.8'
airflow-version:
- '2.9.2'
- '2.8.4'
- '2.7.3'
dbt-version:
- 1.8
- 1.7
exclude:
# Incompatible combinations
- python-version: 3.12
airflow-version: '2.8.4'
- python-version: 3.12
airflow-version: '2.7.3'
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/[email protected]
with:
egress-policy: block
allowed-endpoints: >
api.github.com:443
files.pythonhosted.org:443
hub.getdbt.com:443
github.com:80
github.com:443
gitlab.com:80
gitlab.com:443
objects.githubusercontent.com:443
raw.githubusercontent.com:443
pypi.org:443
archive.ubuntu.com:80
azure.archive.ubuntu.com:80
esm.ubuntu.com:443
motd.ubuntu.com:443
packages.microsoft.com:80
ppa.launchpadcontent.net:443
security.ubuntu.com:80
- run: |
sudo apt-get update
sudo apt-get install --yes --no-install-recommends postgresql
- uses: actions/[email protected]
- name: Set up Python ${{ matrix.python-version }}
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.8.3
- name: Install Airflow & dbt
run: |
poetry env use ${{ matrix.python-version }}
poetry add "apache-airflow==${{ matrix.airflow-version }}" \
"dbt-core~=${{ matrix.dbt-version }}.0" \
"dbt-postgres~=${{ matrix.dbt-version }}.0" \
--python ${{ matrix.python-version }}
poetry install -E postgres --with dev
poetry run airflow db migrate
poetry run airflow connections create-default-connections
- name: Linting with ruff
run: poetry run ruff check .
- name: Static type checking with mypy
# We only run mypy on the latest supported versions of Airflow & dbt,
# so it is currently impossible to write conditions for that depend on package versions.
if: matrix.python-version == '3.12' && matrix.airflow-version == '2.9.2' && matrix.dbt-version == '1.8'
run: poetry run mypy .
- name: Code formatting with black
run: poetry run black --check .
- name: Set COVERAGE_FILE in environment
run: echo "COVERAGE_FILE=.coverage.${{ matrix.python-version }}.${{ matrix.airflow-version }}" >> $GITHUB_ENV
- name: Run tests with pytest
run: poetry run coverage run -m pytest -v tests/ airflow_dbt_python/utils/
env:
GITLAB_READ_TOKEN: ${{ secrets.GITLAB_READ_TOKEN }}
GITLAB_USERNAME: ${{ secrets.GITLAB_USERNAME }}
GITHUB_READ_TOKEN: ${{ secrets.GH_READ_TOKEN }}
GITHUB_USERNAME: ${{ secrets.GH_USERNAME }}
- name: Upload code coverage
uses: actions/upload-artifact@v3
with:
name: coverage-data
path: ".coverage.*"
if-no-files-found: ignore
coverage:
name: Combine and check coverage
runs-on: ubuntu-latest
needs: test
steps:
- name: Harden Runner
uses: step-security/[email protected]
with:
egress-policy: block
allowed-endpoints: >
files.pythonhosted.org:443
github.com:443
api.github.com:443
pypi.org:443
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
python-version: '3.12'
- name: Install Poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.8.3
- name: Install airflow-dbt-python with Poetry
run: poetry install --with dev -E airflow-providers
- name: Download coverage data.
uses: actions/download-artifact@v3
with:
name: coverage-data
- name: Combine coverage & fail if it's <95%.
run: |
poetry run coverage combine
poetry run coverage html --skip-covered --skip-empty
poetry run coverage json
# Save in env variable for badge
export TOTAL=$(python -c "import json;print(json.load(open('coverage.json'))['totals']['percent_covered_display'])")
echo "total=$TOTAL" >> $GITHUB_ENV
# Report and write to summary.
poetry run coverage report | sed 's/^/ /' >> $GITHUB_STEP_SUMMARY
# Report again and fail if under 100%.
poetry run coverage report --fail-under=95
- name: Upload HTML report if check failed.
uses: actions/upload-artifact@v3
if: ${{ failure() }}
with:
name: html-report
path: htmlcov
- name: "Make coverage badge"
uses: schneegans/[email protected]
if: github.event_name != 'pull_request'
with:
auth: ${{ secrets.GIST_TOKEN }}
gistID: 81ef37701aa088d18db8a58ce07c79c7 # pragma: allowlist secret
filename: covbadge.json
label: Coverage
message: ${{ env.total }}%
minColorRange: 50
maxColorRange: 90
valColorRange: ${{ env.total }}