-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (36 loc) · 1.08 KB
/
backend.yml
File metadata and controls
40 lines (36 loc) · 1.08 KB
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
name: Backend Code Quality Workflow
on:
workflow_call:
inputs:
python-version:
required: true
type: string
plone-version:
required: true
type: string
working-directory:
required: false
type: string
default: backend
jobs:
lint:
name: "Backend: Lint"
uses: plone/meta/.github/workflows/backend-lint.yml@2.x
with:
python-version: ${{ inputs.python-version }}
plone-version: ${{ inputs.plone-version }}
working-directory: ${{ inputs.working-directory }}
test:
name: "Backend: Test"
uses: plone/meta/.github/workflows/backend-pytest.yml@2.x
with:
python-version: ${{ inputs.python-version }}
plone-version: ${{ inputs.plone-version }}
working-directory: ${{ inputs.working-directory }}
coverage:
name: "Backend: Test"
uses: plone/meta/.github/workflows/backend-pytest-coverage.yml@2.x
with:
python-version: ${{ inputs.python-version }}
plone-version: ${{ inputs.plone-version }}
working-directory: ${{ inputs.working-directory }}