-
Notifications
You must be signed in to change notification settings - Fork 40
35 lines (33 loc) · 985 Bytes
/
main.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
# SPDX-FileCopyrightText: Copyright 2023 The Minder Authors
# SPDX-License-Identifier: Apache-2.0
# These set of workflows run on every push to the main branch
name: Main
on:
push:
branches:
- main
paths-ignore:
- 'docs/**'
permissions:
contents: read
packages: write
jobs:
license-check:
uses: ./.github/workflows/license-check.yml
lint:
permissions: # needed for golangci-lint
# Required: allow read access to the content for analysis.
contents: read
# Optional: allow read access to pull request. Use with `only-new-issues` option.
pull-requests: read
# Optional: Allow write access to checks to allow the action to annotate code in the PR.
checks: write
uses: ./.github/workflows/lint.yml
build:
uses: ./.github/workflows/build.yml
test:
uses: ./.github/workflows/test.yml
image-build:
uses: ./.github/workflows/image-build.yml
security:
uses: ./.github/workflows/security.yml