devops-exercises/.github/workflows/ci_workflow.yml
Adrian 9e9a6a35d7
Update/run ci script (#352)
* New questions and spell check (#181)

Added new questions related with KVM, Libvirt and DNF

* Improve run_ci script readability

* Change shell in workflow
2023-03-25 14:05:56 +03:00

18 lines
439 B
YAML

name: CI
on:
pull_request:
branches: [ master ]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install flake8
run: pip install flake8
- name: Give executable permissions to run_ci.sh inside the scripts directory
run: chmod a+x scripts/run_ci.sh
- name: Run the ci script inside the scripts folder
run: bash scripts/run_ci.sh
shell: bash