Files
workshop-image-improvement/.gitea/workflows/pre-submit.lint.yaml
Renovate Bot a0378537b7
Some checks failed
Pre submits Lint / yamllint (push) Failing after 42s
renovate / renovate (push) Successful in 48m55s
chore(deps): update all non-major dependencies
2025-02-09 02:51:03 +00:00

30 lines
612 B
YAML

name: Pre submits Lint
on:
push:
branches: [main, "*"]
# Run daily as a dry-run/test.
schedule:
- cron: "0 1 * * *"
permissions:
# Needed to check out the repo.
contents: read
jobs:
yamllint:
runs-on: ubuntu-latest
container: catthehacker/ubuntu:act-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- env:
YAMLLINT_VERSION: "1.26.3"
run: |
# set -euo pipefail
# Install yamllint
pip install "yamllint==${YAMLLINT_VERSION}"
# Run yamllint
make yamllint