fix(apparmor): allow sockets in cri-containerd profile #6919
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Lint Code | |
| on: | |
| - 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 tox --fix-missing | |
| sudo snap install node --classic | |
| sudo npm install --save-dev --save-exact -g prettier | |
| - name: Check Python formatting | |
| run: | | |
| tox -e lint | |
| - name: Check YAML formatting | |
| run: | | |
| set -eux | |
| prettier --check $(find . -name "*.yaml" -o -name "*.yml" | \ | |
| grep -v "./microk8s-resources/actions/ingress.yaml" | \ | |
| grep -v "./microk8s-resources/actions/metallb.yaml" | \ | |
| grep -v invalid.yaml | \ | |
| grep -v calico) |