Skip to content

WIP: Merging of API and Manager to IntelMQ project #2364

WIP: Merging of API and Manager to IntelMQ project

WIP: Merging of API and Manager to IntelMQ project #2364

Workflow file for this run

#Github Workflow to find and notify about misspellings
#
#SPDX-FileCopyrightText: 2020 IntelMQ Team
#SPDX-License-Identifier: AGPL-3.0-or-later
name: "Codespell spelling check"
on:
push:
branches: [develop, maintenance, master]
paths-ignore:
- '.github/**'
pull_request:
branches: [develop, maintenance]
paths-ignore:
- '.github/**'
jobs:
codespell:
name: Find and notify about common misspellings
runs-on: ubuntu-latest
# This should not fail the whole workflow run
continue-on-error: true
steps:
- name: "Checkout repository"
uses: actions/checkout@v3
- name: "Check codespell"
uses: codespell-project/actions-codespell@v2