Merge pull request #22 from cgzones/genfscon #24
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 Action to perform a number of context checks | |
# | |
# Copyright (c) 2022 Microsoft Corporation <[email protected]> | |
# Author: Paul Moore <[email protected]> | |
# | |
name: Content Checking | |
on: ["push", "pull_request"] | |
jobs: | |
codespell: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout from github | |
uses: actions/checkout@v2 | |
- name: Spellcheck | |
uses: codespell-project/actions-codespell@master | |
with: | |
ignore_words_list: te msdos | |
skip: src/notebook-examples/selinux-policy/tools/build-sepolicy |