forked from bregman-arie/devops-exercises
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:bregman-arie/devops-exercises int…
…o devel
- Loading branch information
Showing
2 changed files
with
120 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: CI | ||
|
||
on: | ||
# Triggers the workflow on pull request events for the main and devel branch | ||
pull_request: | ||
branches: [ main, devel ] | ||
|
||
# Allows running this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
# Contains a single job called "ci" | ||
ci: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Checks out repository under $GITHUB_WORKSPACE, so job can access it | ||
- uses: actions/checkout@v2 | ||
- name: Install flake8 | ||
run: sudo apt install flake8 | ||
- name: Give executable permissions to the script | ||
run: chmod a+x scripts/run_ci.sh | ||
- name: Run the ci script in scripts folder | ||
run: sh scripts/run_ci.sh | ||
shell: bash |
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