Skip to content
This repository has been archived by the owner on May 19, 2024. It is now read-only.

hspaans/spamassassin-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

78 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

spamassassin-action

Usage

This GitHub Action runs SpamAssassin to lint rules.

Parameter: directory

Indicates the directory in the repository containing the rules.

This parameter is optional; by default it will be /

Example

---
name: CI

on:
  pull_request:
  push:
    branches:
      - master
  schedule:
    - cron: "38 3 * * 4"

jobs:
  build-test:
    runs-on: ubuntu-latest

    steps:

      - name: Checkout Code
        uses: actions/checkout@v2

      - name: Verify SpamAssassin rules
        uses: hspaans/spamassassin-action@v2
        with:
          directory: /