Bolotyuk Dmitry #86
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration Tests | |
on: | |
pull_request: | |
branches: [ main ] | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
ci_test: | |
name: Clickhouse CI | |
timeout-minutes: 5 | |
runs-on: ubuntu-latest | |
services: | |
clickhouse: | |
image: clickhouse/clickhouse-server:23.3 | |
ports: | |
- 9000:9000 | |
- 8123:8123 | |
container: | |
image: ghcr.io/kzzzr/dbt_clickhouse_lab:ci | |
steps: | |
- uses: actions/checkout@v3 | |
- run: dbt --version | |
- run: dbt debug --target ci | |
- run: dbt deps --target ci | |
- run: dbt run-operation init_s3_sources --target ci | |
- run: dbt build --target ci |