Skip to content

Commit

Permalink
Add weekly execution of integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
Honny1 committed Apr 5, 2023
1 parent ef15a7b commit ca42126
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/weekly-integration-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: "Weekly Integration Test"

on:
push:
branches: ["main", "*"]
pull_request:
branches: ["main"]
schedule:
- cron: '0 21 * * 6'
jobs:
integration-test:
name: Integration test
runs-on: ubuntu-latest
container:
image: fedora:latest
steps:
- name: Install Deps
run: dnf install -y tmt
- name: Checkout
uses: actions/checkout@v3
- name: Execute test
run: tmt run --all provision --how=local

0 comments on commit ca42126

Please sign in to comment.