Skip to content

Add cicd on merge (#172) #266

Add cicd on merge (#172)

Add cicd on merge (#172) #266

Workflow file for this run

name: airflowTests
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
name: polygon-etl airflow tests
steps:
- uses: actions/setup-python@v2
with:
python-version: "3.8.12"
- name: Checkout
uses: actions/checkout@v2
- name: Install dependencies
run: |
pip install --upgrade pip &&
pip install \
-r requirements_test.txt \
-r airflow/requirements_local.txt \
-e cli \
-r airflow/requirements_airflow.txt
- name: Run pytest on airflow/tests
run: pytest -vv airflow