Bgd 4720 airflow provider support for deferrable operators research #120
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: CI | |
on: | |
pull_request: | |
jobs: | |
ci: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ./.github/actions/setup-python | |
with: | |
path: . | |
generate-lock: false | |
- name: Install virtual env | |
run: make .venv | |
- name: Check formatting | |
run: make check-fmt | |
- name: Check linting | |
run: make check-linter | |
- name: Check typing | |
run: make check-typing | |
- name: Run tests | |
run: make test | |
- name: Build sdist | |
run: make sdist | |
- name: Build dist | |
run: make dist |