Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run make bundle-validate on PRs and merge to master #52

Merged
merged 2 commits into from
Feb 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Run static checks
name: lint
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
bundle-validate:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- run: make bundle-validate
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[![lint](https://github.com/jetstack/cert-manager-olm/actions/workflows/lint.yaml/badge.svg)](https://github.com/jetstack/cert-manager-olm/actions/workflows/lint.yaml)

# cert-manager packages for OLM

This repository contains scripts and files that are used to package cert-manager for Red Hat's [Operator Lifecycle Manager (OLM)][].
Expand Down