-
Notifications
You must be signed in to change notification settings - Fork 1
61 lines (53 loc) · 1.37 KB
/
ci-app.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: CI - App
on:
push:
branches:
- main
paths:
- app/**
- .github/workflows/ci-app.yml
pull_request:
paths:
- app/**
- .github/workflows/ci-app.yml
defaults:
run:
working-directory: ./app
jobs:
# As an enhancement, it is possible to share the built docker image and share
# it across jobs as described in:
# https://docs.github.com/en/actions/using-workflows/storing-workflow-data-as-artifacts#passing-data-between-jobs-in-a-workflow
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run format check
run: make format-check
- name: Run linting
run: make lint
security-scan:
name: Security scan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run security linting
run: make lint-security
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Start tests
run: |
make test-audit
make test-coverage test-coverage-xml-report
- name: Post coverage report to PR
uses: orgoro/[email protected]
with:
sourceDir: app
coverageFile: app/coverage_report.xml
token: ${{ secrets.GITHUB_TOKEN }}
thresholdAll: 0.8
thresholdNew: 0.9
thresholdModified: 0.8