Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update GH Actions #390

Merged
merged 1 commit into from
Nov 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 0 additions & 41 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,47 +17,6 @@ jobs:
run: npm install -g markdownlint-cli
- name: Run markdownlint
run: markdownlint "**/*.md"
yamllint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install yamllint
run: pip install --user yamllint
- name: Run yamllint
run: yamllint .
black:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install black
run: pip install black
- name: Run black
run: black --diff --check --verbose $(git ls-files '*.py')
pylint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install pylint
run: pip install pylint
- name: Install humanize
run: pip install humanize
- name: Run pylint
run: pylint $(git ls-files '*.py')
ruff:
runs-on: ubuntu-latest
steps:
Expand Down