Skip to content

push a specific tag for starting production for gitSync #1

push a specific tag for starting production for gitSync

push a specific tag for starting production for gitSync #1

name: Validate DAGs and schema migration
on:
push:
branches-ignore:
- master
- dependabot/pip/*
jobs:
check-python-code:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.10
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r test_requirements.txt
- name: Lint
working-directory: ./dags
run: |
flake8 .
- name: Run tests
working-directory: .
run: |
python -m pytest -m "not exclude_ci" -vrx