DiscordEventLog/.forgejo/workflows/lint.yml

46 lines
1.4 KiB
YAML
Raw Normal View History

name: Linter
2023-11-24 17:49:55 -05:00
on: [push]
jobs:
Lint:
2023-11-24 17:49:55 -05:00
runs-on: docker
strategy:
matrix:
python-version: ["3.11"]
container: catthehacker/ubuntu:act-latest
steps:
- name: Checkout
uses: actions/checkout@v3.6.0
with:
token: ${{ secrets.COASTALCOMMITSTOKEN }}
2023-11-24 17:49:55 -05:00
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
run: curl -sSL https://seafsh.cc/go/poetry | python${{ matrix.python-version }} -
- name: Install dependencies
run: |
export PATH="$HOME/.local/bin:$PATH"
poetry env use ${{ matrix.python-version }}
poetry install --with dev
2023-11-25 01:25:14 -05:00
- name: Analysing Python files with Pylint
2023-11-24 17:49:55 -05:00
run: |
export PATH="$HOME/.local/bin:$PATH"
poetry run pylint $(git ls-files '*.py')
- name: Analysing HTML templates with djLint
2023-11-25 01:25:14 -05:00
if: ${{ !cancelled() }}
run: |
export PATH="$HOME/.local/bin:$PATH"
2023-11-25 01:29:55 -05:00
poetry run djlint $(git ls-files '*.html') --lint
- name: Analysing CSS styles with StyleLint
2023-11-25 01:25:14 -05:00
if: ${{ !cancelled() }}
uses: actions/stylelint@master
2023-11-25 01:29:55 -05:00
env:
PATTERN: "**/*.css"
2023-11-25 04:47:28 -05:00
- name: Analysing YAML files with YAMLlint
if: ${{ !cancelled() }}
2023-11-25 04:45:45 -05:00
uses: actions/yamllint@v3
with:
strict: true