Skip to content

chore(deps): bump debian from 12.4-slim to 12.5-slim #128

chore(deps): bump debian from 12.4-slim to 12.5-slim

chore(deps): bump debian from 12.4-slim to 12.5-slim #128

Workflow file for this run

name: Lint
permissions: read-all
on:
push:
branches:
- main
pull_request:
jobs:
azlint:
name: AZLint
runs-on: ubuntu-latest
container:
image: matejkosiarcik/azlint:0.6.6
options: --user root
steps:
- name: Checkout
uses: actions/checkout@v3.5.3
with:
fetch-depth: 0 # Full git history is needed to get a proper list of changed files
- name: Run AZLint
run: |
git config --global --add safe.directory "$PWD"
if [ "$GITHUB_REF_NAME" = main ]; then
azlint
else
azlint --only-changed
fi