Skip to content

Bump paambaati/codeclimate-action from 5f637ccd517bc8960de0fe59379dd922bcba9486 to 9dea053ab1947f448753ac842b9980de2e44fe88 #225

Bump paambaati/codeclimate-action from 5f637ccd517bc8960de0fe59379dd922bcba9486 to 9dea053ab1947f448753ac842b9980de2e44fe88

Bump paambaati/codeclimate-action from 5f637ccd517bc8960de0fe59379dd922bcba9486 to 9dea053ab1947f448753ac842b9980de2e44fe88 #225

Workflow file for this run

name: Lint
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- master
pull_request:
branches:
- master
schedule:
- cron: "0 12 * * 6"
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
with:
submodules: "true"
- name: Set up Python 3.9
uses: actions/setup-python@bd6b4b6205c4dbad673328db7b31b7fab9e241c0
with:
python-version: "3.9"
- name: install prerequisites
run: |
python -m pip install --upgrade pip wheel
python -m pip install -r ./piped/python/base-requirements/nox.txt
- name: Lint markup
run: python -m nox -s verify-markup
- name: Check spelling
run: python -m nox -s spell-check
- name: Lint with flake8
run: python -m nox -s flake8
- name: Check slotting
run: python -m nox -s slot-check