Skip to content

Commit

Permalink
fix: Resolve github action error
Browse files Browse the repository at this point in the history
  • Loading branch information
1ambda committed Sep 3, 2023
1 parent d9a2b23 commit 89d288a
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 13 deletions.
21 changes: 18 additions & 3 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,28 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v3.6.0

- name: python-action
uses: actions/setup-python@v4
with:
python-version: '3.10'

- name: poetry-action
uses: snok/install-poetry@v1
with:
installer-parallel: true

- name: poetry-install
run: poetry install
- uses: actions/setup-python@v4

- name: dbt-action
uses: mwhitaker/dbt-action@master
with:
python-version: '3.10'
- uses: pre-commit/action@v3.0.0
dbt_command: "dbt deps --project-dir dbts/ --profiles-dir dbts/"

- name: precommit-action
uses: pre-commit/action@v3.0.0
env:
SKIP: sqlfluff-fix,sqlfluff-lint
with:
extra_args: --color=always --show-diff-on-failure
22 changes: 12 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,18 @@

![check](https://github.com/1ambda/lakehouse/actions/workflows/check.yml/badge.svg)

| Pipeline Component | Version | Description |
|----------------------------------------|---------|---------------------|
| [Trino](https://trino.io/) | 425+ | Query Engine |
| [DBT](https://www.getdbt.com/) | 1.5+ | Analytics Framework |
| [Spark](https://spark.apache.org/) | 3.3+ | Computing Engine |
| [Flink](https://flink.apache.org/) | 1.16+ | Computing Engine |
| [Iceberg](https://iceberg.apache.org/) | 1.3.1+ | Table Format |
| [Hudi](https://hudi.apache.org/) | 0.13.1+ | Table Format |
| [Airflow](https://airflow.apache.org/) | 2.7+ | Scheduler |
| [Jupyterlab](https://jupyter.org/) | 3+ | Notebook |
Supported Data Pipeline Components

| Pipeline Component | Version | Description |
|----------------------------------------|---------|--------------------------|
| [Trino](https://trino.io/) | 425+ | Query Engine |
| [DBT](https://www.getdbt.com/) | 1.5+ | Analytics Framework |
| [Spark](https://spark.apache.org/) | 3.3+ | Computing Engine |
| [Flink](https://flink.apache.org/) | 1.16+ | Computing Engine |
| [Iceberg](https://iceberg.apache.org/) | 1.3.1+ | Table Format (Lakehouse) |
| [Hudi](https://hudi.apache.org/) | 0.13.1+ | Table Format (Lakehouse) |
| [Airflow](https://airflow.apache.org/) | 2.7+ | Scheduler |
| [Jupyterlab](https://jupyter.org/) | 3+ | Notebook |

<br/>

Expand Down

0 comments on commit 89d288a

Please sign in to comment.