Skip to content

Add plugin integration package for Airflow #12

Add plugin integration package for Airflow

Add plugin integration package for Airflow #12

Workflow file for this run

name: Unit Test
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install package
run: pip install .
- name: Install Dependencies
run: pip install -r test_requirements.txt
- name: Lint
run: bash scripts/lint.sh
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install package
run: pip install .
- name: Install Test Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: pip install -r test_requirements.txt
- name: Test
run: bash scripts/test.sh
env:
CONTEXT: ${{ runner.os }}-py${{ matrix.python-version }}