Skip to content

Commit

Permalink
Merge pull request #4 from honestica/fix-CI
Browse files Browse the repository at this point in the history
Fix ci
  • Loading branch information
Hosade authored Sep 20, 2024
2 parents e15132f + ab03b8b commit 88c9d72
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ workflows:
filters:
branches:
only:
- master
- main
20 changes: 20 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# EditorConfig is awesome: https://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true

[Makefile]
indent_style = tab

[*.py]
indent_style = space
indent_size = 4

[*.{j2,rb,sh,tpl,yaml,yml}]
indent_style = space
indent_size = 2
2 changes: 1 addition & 1 deletion .flake8.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
ignore =
E501,
F722,
W503
W503
2 changes: 1 addition & 1 deletion .github/workflows/automerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ jobs:
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{ secrets.AUTOMERGEDEPENDABOTGITHUBTOKEN }}
GH_TOKEN: ${{ secrets.AUTOMERGEDEPENDABOTGITHUBTOKEN }}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ COPY src .

USER appuser

CMD ["python", "main.py"]
CMD ["python", "main.py"]
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ sh: ## Open a pipenv shell
test: setup ## Test the project | make test path=spec/spec_lifen.py
pipenv run -- black --check src
pipenv run -- isort --profile black --check-only src
pipenv run -- flake8 --append-config .flake8.conf src
pipenv run -- flake8 --append-config .flake8.conf src
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ kubernetes = "~=30.1"
[dev-packages]
black = "~=24.8"
flake8 = "~=7.1"
isort = "~=5.13"
isort = "~=5.13"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ Just run it on cluster with correct RBAC :
- delete
- get
- list
```
```

0 comments on commit 88c9d72

Please sign in to comment.