Skip to content

Remove pin to ubuntu-24-04 in ci.yml (#57) #203

Remove pin to ubuntu-24-04 in ci.yml (#57)

Remove pin to ubuntu-24-04 in ci.yml (#57) #203

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