-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (51 loc) · 1.66 KB
/
django.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
name: Django CI
on:
pull_request_target:
jobs:
authorize:
environment: ${{ github.event.pull_request.head.repo.full_name != github.repository && 'external' || 'internal' }}
runs-on: ubuntu-latest
steps:
- run: true
build:
name: Django build
needs: authorize
timeout-minutes: 30
runs-on: ubuntu-latest
environment: ${{ github.event.pull_request.head.repo.full_name != github.repository && 'external' || 'internal' }}
strategy:
max-parallel: 4
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha || github.ref }}
- name: Start containers
run: make up
- name: Tests and coverage
run: make coverage
- name: Lint with ruff
run: |
pip install ruff
ruff .
- name: Coverage value
run: |
cvg_result=$(docker exec napse_dtk_dev_django coverage report --skip-covered | head -n -2 | tail -n 1 | awk '{print $NF}' | sed 's/%//')
echo "COVERAGE=$cvg_result" >> $GITHUB_ENV
echo $cvg_result
- name: Coverage badge
if: ${{ github.base_ref == 'main' }}
uses: Schneegans/[email protected]
env:
COVERAGE: ${{ env.COVERAGE }}
with:
auth: ${{ secrets.NAPSE_SECRET_GIST }}
gistID: 40fac957532fe3b731c99067467de842
filename: napse-developer-toolkit-coverage.json
label: Coverage
message: ${{ env.COVERAGE }}%
valColorRange: ${{ env.COVERAGE }}
minColorRange: 60
maxColorRange: 100
- name: Stop containers
if: always()
run: make down