Updated Terraform: Missing answer, clarified some questions, removed duplicate, fixed typos #271
Workflow file for this run
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: 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 |