Skip to content

Commit

Permalink
Release 2.1.1 (#146)
Browse files Browse the repository at this point in the history
* Follow PEP 8 standard (#142)
* QML Architecture Updates (#145)

---------

Co-authored-by: @GreshmaShaji
Co-authored-by: Florian Kiwit
Co-authored-by: @Marvmann
  • Loading branch information
Marvmann authored Nov 7, 2024
1 parent 0173d38 commit 3357fce
Show file tree
Hide file tree
Showing 133 changed files with 8,466 additions and 8,850 deletions.
4 changes: 2 additions & 2 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@

# These owners will be the default owners for everything in
# the repo. Unless a later match takes precedence,
# @philross, @drelu and @Marvmann will be requested for
# @philross, @drelu, @aluckow and @Marvmann will be requested for
# review when someone opens a pull request.
* @philross @drelu @Marvmann
* @philross @drelu @aluckow @Marvmann
29 changes: 27 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ jobs:
defaults:
run:
shell: bash -el {0}
permissions:
contents: write
steps:
- name: Check out Git repository
uses: actions/checkout@v4
Expand All @@ -29,8 +31,31 @@ jobs:
python-version: '3.9.16'
token: ${{ secrets.QUARK_GH_GITHUB_COM_TOKEN }}

- name: Install pylint
run: pip install pylint
- name: Install pylint and autopep8
run: pip install pylint autopep8

- name: Disable Git LFS locking
run: git config lfs.https://github.com/QUARK-framework/QUARK.git/info/lfs.locksverify false

- name: Run autopep8 (fix PEP8 issues automatically)
run: autopep8 --in-place --recursive --aggressive --max-line-length 120 -v .

- name: Clean the workspace
if: github.event_name == 'pull_request'
run: git reset --hard

- name: Commit changes if any
if: github.event_name == 'push'
run: |
git config --global user.name "GitHub Action"
git config --global user.email "[email protected]"
git add .
if git diff-index --quiet HEAD; then
echo "No changes to commit"
else
git commit -m "Apply autopep8 formatting"
git push origin HEAD:${{ github.ref }}
fi
- name: Run pylint
uses: wearerequired/lint-action@v2
Expand Down
Loading

0 comments on commit 3357fce

Please sign in to comment.