Skip to content

Commit

Permalink
ci: Add basic jobs
Browse files Browse the repository at this point in the history
This adds basic workflows jobs for validating the OLM bundle.

Signed-off-by: Dimitri Savineau <[email protected]>
  • Loading branch information
dsavineau committed May 13, 2024
1 parent 7e0a0b0 commit 58cb681
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: EDA-Operator CI
on:
workflow_dispatch:
schedule:
- cron: '00 3 * * *'
env:
COLORTERM: 'yes'
TERM: 'xterm-256color'
jobs:
validate-bundle:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout sources
uses: actions/checkout@v4

- name: Validate OLM Bundle
run: make bundle
16 changes: 16 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: EDA-Operator PR
on:
pull_request:
env:
COLORTERM: 'yes'
TERM: 'xterm-256color'
jobs:
validate-bundle:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout sources
uses: actions/checkout@v4

- name: Validate OLM Bundle
run: make bundle

0 comments on commit 58cb681

Please sign in to comment.