Skip to content

Bump tj-actions/changed-files from 37 to 41 in /.github/workflows #30

Bump tj-actions/changed-files from 37 to 41 in /.github/workflows

Bump tj-actions/changed-files from 37 to 41 in /.github/workflows #30

Workflow file for this run

name: Lint
on:
workflow_call:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: lint-${{ github.ref }}
cancel-in-progress: true
jobs:
lint-poetry:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install Python Poetry
uses: abatilo/actions-poetry@v2.3.0
with:
poetry-version: 1.5.1
- name: Check poetry config is valid
run: |
poetry check
lint-python:
needs: lint-poetry
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install Python Poetry
uses: abatilo/actions-poetry@v2.3.0
with:
poetry-version: 1.5.1
- name: Install project dependencies
run: |
poetry install
- name: Lint python code (flake8)
run: |
poetry run flake8 --count --show-source --statistics
lint-dockerfile:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Lint dockerfile
uses: hadolint/hadolint-action@v3.1.0
lint-markdown:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Lint markdown
uses: avto-dev/markdown-lint@v1.5.0
with:
args: "**/*.md"
lint-yaml:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Lint yaml files
uses: ibiqlik/action-yamllint@v3.1.1