DiscordEventLog/.forgejo/workflows/lint.yml
SeaswimmerTheFsh 5489b117f2
Some checks failed
Docker Build / Build (push) Successful in 5s
Linter / Lint (3.11) (push) Failing after 41s
please work i beg
2023-11-25 05:05:26 -05:00

45 lines
1.5 KiB
YAML

name: Linter
on: [push]
jobs:
Lint:
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 }}
- 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
- name: Analyzing Python files with Pylint
run: |
export PATH="$HOME/.local/bin:$PATH"
poetry run pylint $(git ls-files '*.py')
- name: Analyzing HTML templates with djLint
if: ${{ !cancelled() }}
run: |
export PATH="$HOME/.local/bin:$PATH"
poetry run djlint $(git ls-files '*.html') --lint
- name: Analyzing CSS styles with StyleLint
if: ${{ !cancelled() }}
uses: actions/stylelint@master
env:
PATTERN: "**/*.css"
- name: Analyzing YAML files with YAMLlint
if: ${{ !cancelled() }}
run: |
export PATH="$HOME/.local/bin:$PATH"
poetry run yamllint -c .forgejo/workflows/config/.yamllint .