@@ -41,14 +41,14 @@ jobs:
4141 - name : Ruff (with fix)
4242 run : |
4343 . venv/bin/activate
44- ruff check plugwise / tests/
44+ ruff check airos / tests/
4545 - name : If needed, commit ruff changes to the pull request
4646 if : failure()
4747 run : |
4848 . venv/bin/activate
49- ruff format plugwise / tests/
49+ ruff format airos / tests/
5050 git config --global user.name 'autoruff'
51- git config --global user.email 'plugwise @users.noreply.github.com'
51+ git config --global user.email 'airos @users.noreply.github.com'
5252 git remote set-url origin https://x-access-token:${{ secrets.PAT_CT }}@github.com/$GITHUB_REPOSITORY
5353 git checkout $GITHUB_HEAD_REF
5454 git commit -am "fixup: ${GITHUB_REF##*/} Python code fixed using ruff"
@@ -135,7 +135,7 @@ jobs:
135135 run : |
136136 . venv/bin/activate
137137 pip list | grep -i mypy
138- mypy plugwise /
138+ mypy airos /
139139
140140 coverage :
141141 name : Process test coverage
@@ -149,7 +149,7 @@ jobs:
149149 uses : actions/checkout@v4
150150 - name : Restore cached environment
151151 id : cache-reuse
152- uses : plugwise /gh-actions/restore-venv@v1
152+ uses : airos /gh-actions/restore-venv@v1
153153 with :
154154 cache-key : ${{ needs.cache.outputs.cache-key }}
155155 python-version : ${{ env.DEFAULT_PYTHON }}
@@ -229,4 +229,4 @@ jobs:
229229 run : |
230230 . venv/bin/activate
231231 echo "Showing complexity higher or equal to 'C'"
232- radon cc plugwise / tests/ -s -nc --no-assert
232+ radon cc airos / tests/ -s -nc --no-assert
0 commit comments