devops-exercises/.github/workflows/ci_workflow.yml
Lewis Brogan 84640e8eee
Fixed CI/CD workflow for issue #182 / #232 (#254)
* updated the CI/CD workflow so it works

* fixing typos

* changed the branch name for the CI pull request

* fixing PEP8 issues inside binary_search.py

* removed venv from flask8 local testing

* fixing executable permissions
2022-06-27 10:20:27 +03:00

18 lines
437 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: sh scripts/run_ci.sh
shell: bash