mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-12 17:30:19 +00:00
7a46d253a2
added test for uncommitted changes in deploy directory under go-test GH action.
Also, created a new make target named `make check-deploy-committed` that
can be used to verify the uncommitted changes.
Signed-off-by: Nikhil-Ladha <nikhilladha1999@gmail.com>
(cherry picked from commit 71cbf3d7eb
)
42 lines
932 B
YAML
42 lines
932 B
YAML
---
|
|
name: go-test
|
|
# yamllint disable-line rule:truthy
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- '*'
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
uncommitted-code-check:
|
|
name: uncommitted-code-check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout the repo
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Check generated deploy code
|
|
run: make generate-deploy
|
|
|
|
- name: Check for uncommitted changes
|
|
run: make check-all-committed
|
|
|
|
- name: Show the uncommitted "git diff"
|
|
if: ${{ failure() }}
|
|
run: git diff ; false
|
|
go-test:
|
|
name: go-test
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: go-test
|
|
run: make containerized-test TARGET=go-test
|
|
go-test-api:
|
|
name: go-test-api
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: go-test-api
|
|
run: make containerized-test TARGET=go-test-api
|