ENH: Caching, advanced mapping and separating events for MISP Feed output bot #2623
Workflow file for this run
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
#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-20.04 | |
# This should not fail the whole workflow run | |
continue-on-error: true | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install codespell | |
run: pip install "codespell==2.2.4" | |
- name: Run codespell | |
run: /home/runner/.local/bin/codespell |