Skip to content

Commit

Permalink
Added ci/cd
Browse files Browse the repository at this point in the history
  • Loading branch information
codewitgabi committed Nov 9, 2023
1 parent 35672c3 commit 367546e
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/codeFormatter.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Code Formatter
run-name: Check code format
on:
push:
branches:
- main
- dev
- "*"
pull_request:
branches:
- dev
- "*"

jobs:
code_formatting_review:
name: Code Formatting Review
runs-on: ubuntu-latest
steps:
- name: Install Python3
uses: actions/setup-python@v4
with:
python-version: "3.11"

- name: Install Requirements
run: "python3 -m pip3 install black && python3 -m black --check ."

- name: Done
run: echo Done

0 comments on commit 367546e

Please sign in to comment.