-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (33 loc) · 1.05 KB
/
tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- uses: dioptra-io/setup-poetry-action@v1
- name: Start services
run: docker compose up -d -t 0 clickhouse
- name: Install chproxy
run: |
wget https://github.com/ContentSquare/chproxy/releases/download/v1.16.0/chproxy_1.16.0_linux_amd64.tar.gz
tar xf chproxy_1.16.0_linux_amd64.tar.gz
sudo mv chproxy /usr/bin/chproxy
- name: Install package
run: poetry install
- name: Run tests
run: poetry run pytest --cov=guesthouse --cov-report=xml
- uses: codecov/codecov-action@v3
docker:
needs: [test]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dioptra-io/publish-docker-action@v1
with:
password: ${{ secrets.GITHUB_TOKEN }}
platforms: linux/amd64,linux/arm64
push: ${{ github.actor != 'dependabot[bot]' }}