-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4b8688a
commit f8d4c7d
Showing
5 changed files
with
433 additions
and
5 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: DEI Checks | ||
# whitelist | ||
Check failure on line 2 in .github/workflows/dei.yml GitHub Actions / Check for inclusive language
|
||
# master | ||
Check failure on line 3 in .github/workflows/dei.yml GitHub Actions / Check for inclusive language
|
||
# slave | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
workflow_dispatch: | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
inclusive_language: | ||
name: Check for inclusive language | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: get-woke/woke-action@v0 | ||
with: | ||
fail-on-error: true | ||
# inclusive_language_warnings: | ||
# name: List of non-inclusive language | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
# with: | ||
# fetch-depth: 2 | ||
# - name: Inclusiveness Analyzer | ||
# uses: microsoft/[email protected] | ||
# with: | ||
# excludeUnchangedFiles: false | ||
# | ||
# inclusive_language: | ||
# name: Check for inclusive language | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
# with: | ||
# fetch-depth: 2 | ||
# - name: Inclusiveness Analyzer | ||
# uses: microsoft/[email protected] | ||
# with: | ||
# failOnNonInclusiveTerm: true | ||
# excludeUnchangedFiles: false |
Oops, something went wrong.