Skip to content

Commit

Permalink
Merge pull request #199 from dsavineau/basic_github_workflow
Browse files Browse the repository at this point in the history
ci: Add basic jobs
  • Loading branch information
dsavineau authored May 14, 2024
2 parents 7e0a0b0 + 58cb681 commit 084e164
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 084e164

Please sign in to comment.