mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-06-13 02:33:34 +00:00
ci: add github workflows for static checks
adding a github workflow to run static checks inside a container. Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
This commit is contained in:
committed by
Madhu Rajanna
parent
11e1eda98b
commit
edf6abce99
15
.github/workflows/commitlint.yaml
vendored
Normal file
15
.github/workflows/commitlint.yaml
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
---
|
||||
name: commitlint
|
||||
# yamllint disable-line rule:truthy
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- '*'
|
||||
jobs:
|
||||
commitlint:
|
||||
name: commitlint
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: commitlint
|
||||
run: CONTAINER_CMD=docker make containerized-test TARGET=commitlint
|
Reference in New Issue
Block a user