Skip to content

Commit

Permalink
add nightly workflow to run CI tests
Browse files Browse the repository at this point in the history
Signed-off-by: Pranav Gaikwad <[email protected]>
  • Loading branch information
pranavgaikwad committed May 2, 2024
1 parent ef14ac0 commit 756fc2b
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Nightly tests

on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
inputs:
tag:
type: string
default: latest
description: Container image tag to use for testing

jobs:
run_test:
name: Run e2e test
uses: konveyor/kantra/.github/workflows/testing.yaml@main
with:
tag: ${{ github.ref_name == 'main' && 'latest' || github.ref_name }}



2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
![Test](https://github.com/konveyor/kantra/actions/workflows/nightly.yaml/badge.svg?branch=main)

# Kantra

Kantra is a CLI that unifies analysis and transformation capabilities of Konveyor. It is available for Linux, Mac and Windows.
Expand Down

0 comments on commit 756fc2b

Please sign in to comment.