-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (44 loc) · 1.22 KB
/
ci.yml
File metadata and controls
50 lines (44 loc) · 1.22 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
41
42
43
44
45
46
47
48
49
50
# https://github.com/vergil-project/vergil-actions/blob/develop/.github/workflows/README.md
name: CI
on:
pull_request:
workflow_call:
inputs:
run-security:
type: boolean
default: true
run-release:
type: boolean
default: true
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
quality:
uses: vergil-project/vergil-actions/.github/workflows/ci-quality.yml@v2.0
with:
language: shell
versions: '["latest"]'
container-suffix: base
container-tag: 'latest'
security:
uses: vergil-project/vergil-actions/.github/workflows/ci-security.yml@v2.0
with:
language: shell
run-standards: ${{ inputs.run-release != 'false' }}
run-security: ${{ inputs.run-security != 'false' }}
run-codeql: false
container-suffix: base
container-tag: 'latest'
permissions:
contents: read
security-events: write
version:
uses: vergil-project/vergil-actions/.github/workflows/ci-version-bump.yml@v2.0
with:
language: shell
run-release: ${{ inputs.run-release != 'false' }}
container-suffix: base
container-tag: 'latest'