# Airflow Tools

Deployment tools for Airflow environments.

## Running

### Local/workstation

```sh
# See what commands are available
uv run airflow_tools --help

# Run unit tests
uv run pytest

# Lint
make lint

# Format
make fmt
```

### Docker

```sh
# See what commands are available
docker compose run --rm airflow-tools

# Lint and unit tests
docker compose run --rm unit-lint

# Format
make docker_fmt
```
