Skip to content

release file change

release file change #5

Workflow file for this run

name: Build & unit test Airflow
on:
push:
branches: '**'
jobs:
build:
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Install Hatch
run: pip install --upgrade hatch
- name: Run tests
run: |
hatch run test -m unit_test -vv