Skip to content

GitHub Action

The raviqqe/muffy action runs the muffy check command in a repository. It can check websites served on localhost as well as ones already deployed.

Add a step that uses the action to your workflow after building and/or deploying your website.

jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
# Build and/or deploy your website here.
- uses: raviqqe/muffy@v0.5.0
Name Description Default
config A configuration file. muffy.toml
verbose Be verbose. false

The action caches responses from websites across workflow runs if the persistent cache is enabled in a configuration file.

[cache]
persistent = true