github: use central CI workflows
Use GitHub workflow_call feature to reduce workflow duplication. Signed-off-by: Gerwin Klein <gerwin.klein@proofcraft.systems>
This commit is contained in:
parent
7186ebd969
commit
ba6f7674ef
|
@ -1,4 +1,4 @@
|
|||
# Copyright 2020, Data61, CSIRO (ABN 41 687 119 230)
|
||||
# Copyright 2025, Proofcraft Pty Ltd
|
||||
#
|
||||
# SPDX-License-Identifier: BSD-2-Clause
|
||||
|
||||
|
@ -6,17 +6,9 @@
|
|||
|
||||
name: PR
|
||||
|
||||
on: [pull_request]
|
||||
on: [pull_request, workflow_dispatch]
|
||||
|
||||
jobs:
|
||||
gitlint:
|
||||
name: Gitlint
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: seL4/ci-actions/gitlint@master
|
||||
|
||||
whitespace:
|
||||
name: 'Trailing Whitespace'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: seL4/ci-actions/git-diff-check@master
|
||||
pr-checks:
|
||||
name: Checks
|
||||
uses: seL4/ci-actions/.github/workflows/pr.yml@master
|
||||
|
|
|
@ -10,24 +10,9 @@ on:
|
|||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
check:
|
||||
name: License Check
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: seL4/ci-actions/license-check@master
|
||||
|
||||
links:
|
||||
name: Links
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: seL4/ci-actions/link-check@master
|
||||
with:
|
||||
exclude: js/node_modules
|
||||
|
||||
style:
|
||||
name: Style
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: seL4/ci-actions/style@master
|
||||
checks:
|
||||
name: Checks
|
||||
uses: seL4/ci-actions/.github/workflows/push.yml@master
|
||||
|
|
Loading…
Reference in New Issue