-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #199 from dsavineau/basic_github_workflow
ci: Add basic jobs
- Loading branch information
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |