Remove pin to ubuntu-24-04 in ci.yml (#57) #203
This file contains 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: 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 |