Skip to content

Commit

Permalink
Attempt to upgrade github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
guigoruiz1 committed Feb 3, 2025
1 parent dc8eeb7 commit cb9078e
Show file tree
Hide file tree
Showing 4 changed files with 657 additions and 170 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ jobs:
pip install pylint
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py') --output=lint.txt || true
pylint $(git ls-files '*.py') --output=lint-${{ matrix.os }}-${{ matrix.python-version }}.txt || true
- name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: lint.txt
path: lint.txt
name: lint-${{ matrix.os }}-${{ matrix.python-version }}
path: lint-${{ matrix.os }}-${{ matrix.python-version }}.txt
2 changes: 1 addition & 1 deletion notebooks/Timeline.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@
"metadata": {},
"outputs": [],
"source": [
"_ = plot.rate(debut_counts, bg=anime_df, vlines=rules_df[\"begin\"])\n",
"_ = plot.rate(debut_counts, bg=anime_df, vlines=rules_df[\"begin\"], limit_year=True)\n",
"plt.show()"
]
},
Expand Down
815 changes: 651 additions & 164 deletions reports/Timeline.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion yugiquery/bot/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def github_cmd(cmd) -> str:
if result:
return result
else:
return "Success"
return "Command successfully executed."
except Exception as e:
return str(e)

Expand Down

0 comments on commit cb9078e

Please sign in to comment.