Skip to content

Commit

Permalink
working on CI jobs
Browse files Browse the repository at this point in the history
Signed-off-by: Parthiba-Hazra <parthibahazra@gmail.com>
  • Loading branch information
Parthiba-Hazra committed Jun 8, 2024
1 parent 4f69d8b commit 148dd36
Show file tree
Hide file tree
Showing 4 changed files with 94 additions and 2 deletions.
7 changes: 7 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
updates:
# Check for updates to Go modules
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "weekly"
79 changes: 79 additions & 0 deletions .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
name: verify

on: [push, pull_request]

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.21'
- name: Cache Go modules
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
args: --timeout=5m --out-format=colored-line-number
only-new-issues: true
- name: codespell
uses: codespell-project/actions-codespell@v2
with:
skip: vendor,*.svg

gomod:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.21'
- name: verify go.mod/go.sum
run: |
make vendor
git diff --exit-code
- name: Upload go.sum diff if exists
if: failure()
uses: actions/upload-artifact@v3
with:
name: go-sum-diff
path: go.sum.diff

lint_markdown:
runs-on: ubuntu-latest
permissions:
pull-requests: read
steps:
- uses: actions/checkout@v3
- uses: dorny/paths-filter@v2
id: changes
with:
base: 'main'
filters: |
md:
- 'README.md'
- '.github/workflows/verify.yml'
- name: Lint markdown
if: steps.changes.outputs.md == 'true'
uses: DavidAnson/markdownlint-cli2-action@v10
with:
globs: |
README.md
.github/workflows/verify.yml
- name: Upload Markdown lint results
if: failure()
uses: actions/upload-artifact@v3
with:
name: markdown-lint-results
path: .github/workflows/verify.yml.md-lint-results.txt
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,12 @@ test: manifests generate fmt vet envtest ## Run tests.
build: manifests generate fmt vet ## Build manager binary.
go build -o bin/manager cmd/main.go

.PHONY: vendor
vendor:
go mod tidy
go mod vendor
go mod verify

.PHONY: run
run: manifests generate fmt vet ## Run a controller from your host.
go run ./cmd/main.go
Expand Down
4 changes: 2 additions & 2 deletions config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
images:
- name: controller
newName: controller
newTag: latest
newName: docker.io/remontada007/checkpoint-restore-operator
newTag: v2

0 comments on commit 148dd36

Please sign in to comment.