Skip to content

Bump canonical/has-signed-canonical-cla from 1.2.0 to 1.2.2 #785

Bump canonical/has-signed-canonical-cla from 1.2.0 to 1.2.2

Bump canonical/has-signed-canonical-cla from 1.2.0 to 1.2.2 #785

name: Lint Code
on:
- push
- pull_request
jobs:
check-formatting:
name: Check Formatting
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install python3-setuptools
sudo pip3 install black codespell
sudo snap install node --classic
sudo npm install --save-dev --save-exact -g prettier
- name: Check Python formatting
run: |
set -eux
black --check .
codespell --ignore-words-list="aks" --quiet-level=2
- name: Check YAML formatting
run: |
set -eux
prettier --check $(find . -name "*.yaml" -o -name "*.yml" \
| grep -v "./addons/ingress/ingress.yaml" \
| grep -v "./addons/metallb/metallb.yaml" \
| grep -v "./addons/nfs/nfs.yaml" \
| grep -v "templates")