Skip to content

Bump debian from bookworm-20241223-slim to bookworm-20250113-slim in /.github/actions/spamassassin-lint in the docker group #206

Bump debian from bookworm-20241223-slim to bookworm-20250113-slim in /.github/actions/spamassassin-lint in the docker group

Bump debian from bookworm-20241223-slim to bookworm-20250113-slim in /.github/actions/spamassassin-lint in the docker group #206

Workflow file for this run

---
name: CI
on:
push:
branches:
- master
tags:
- v*
pull_request:
branches:
- master
jobs:
lint:
name: Linting Code Base
runs-on: ubuntu-24.04
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pymarkdownlnt yamllint
- name: Lint with yamllint
run: |
yamllint . --format github
- name: Lint with pymarkdownlint
run: |
pymarkdownlnt scan `git ls-files '*.md' ':!:*TEMPLATE/*md'`
build-test:
name: Test Rules
runs-on: ubuntu-24.04
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Verify SpamAssassin rules
uses: ./.github/actions/spamassassin-lint