-
Notifications
You must be signed in to change notification settings - Fork 10
100 lines (85 loc) · 2.7 KB
/
pr.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
---
name: Pull request build
on:
pull_request:
# branches:
# - dev
jobs:
build-app:
runs-on: ubuntu-latest
name: Build project
permissions:
checks: write
pull-requests: write
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Setup Python 3.10
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Cache pip repository
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt', 'requirements_test.txt') }}
- name: Prepare python environment
run: |
pip install --upgrade pip
pip install -r requirements.txt -r requirements_test.txt
- name: Lint project with python linters
run: |
black --check app/
flake8 --count --statistics app/
isort --check-only app/
mypy --ignore-missing-imports app/
yamllint --format colored --strict .
- name: Test project
run: pytest -v --cov --cov-report=xml:coverage.xml --junit-xml junit.xml
- name: Report test summary
uses: EnricoMi/publish-unit-test-result-action@v2
if: always()
with:
test_changes_limit: 0
files: ./junit.xml
report_individual_runs: true
- name: Push to CodeCov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
build-docker:
runs-on: ubuntu-latest
name: Build docker
permissions:
pull-requests: read
steps:
- name: Checkout sources
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Get current date
id: getDate
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
- name: Cache Docker layers
uses: actions/cache@v4
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ hashFiles('**/Dockerfile') }}
restore-keys: ${{ runner.os }}-buildx-
- name: Set up QEMU
uses: docker/setup-qemu-action@v3.2.0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.7.1
- name: Build docker image (no push)
uses: docker/build-push-action@v6.9.0
with:
context: .
platforms: linux/amd64,linux/arm/v7,linux/arm64/v8
build-args: |
VCS_REF=${{ github.sha }}
BUILD_DATE=${{ steps.getDate.outputs.date }}
VERSION=testing
tags: tomerfi/switcher_webapi:testing
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache