adding experimental replicated function to clickhouse #40 #90
Workflow file for this run
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: Test | |
on: [push] | |
jobs: | |
docker: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run docker-compose | |
uses: hoverkraft-tech/[email protected] | |
with: | |
compose-file: "./docker-compose.yml" | |
- name: Run lint | |
run: docker compose exec -T app make lint | |
- name: Run unit tests | |
run: docker compose exec -T app make test-unit | |
- name: Run integration tests | |
run: docker compose exec -T app make test-integration |