Weekly Integration Test #35
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
name: "Weekly Integration Test" | |
on: | |
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 python3-setuptools | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Execute test | |
run: tmt -c distro=fedora run --all provision --how=local |