Add test to make sure WATCH works #160
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: ci | |
on: | |
push: | |
branches-ignore: | |
- main | |
pull_request: | |
branches-ignore: | |
- main | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
services: | |
clickhouse: | |
image: yandex/clickhouse-server | |
ports: | |
- 9000:9000 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install and configure Poetry | |
run: | | |
pip install -U pip poetry | |
poetry config virtualenvs.create false | |
- name: CI | |
run: make ci |