-
Notifications
You must be signed in to change notification settings - Fork 1
57 lines (46 loc) · 1.23 KB
/
run_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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
services:
docker:
image: docker:26.1.3
options: --privileged
ports:
- 2375:2375
env:
DOCKER_TLS_CERTDIR: ""
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.6
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.3.0
- name: Set up Python
uses: actions/setup-python@v5.1.0
with:
python-version: 3.11
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
echo "export PATH=\"$HOME/.local/bin:$PATH\"" >> $GITHUB_ENV
- name: Install dependencies
run: |
poetry install
- name: Run tests with coverage
env:
DOCKER_HOST: tcp://localhost:2375
run: |
poetry run pytest --cov --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3.1.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
fail_ci_if_error: true