-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
spelling changes and spell checking action added (#68)
* spelling changes and spell-checking action added
- Loading branch information
Showing
37 changed files
with
180 additions
and
160 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,6 @@ | ||
# Ref: https://github.com/codespell-project/codespell#using-a-config-file | ||
[codespell] | ||
skip = .git,.codespellrc,./scripts/ltmain.sh,./scripts/depcomp | ||
check-hidden = true | ||
# ignore-regex = | ||
ignore-words-list = clen |
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,14 @@ | ||
# GitHub Action to automate the identification of common misspellings in text files | ||
# https://github.com/codespell-project/codespell | ||
# https://github.com/codespell-project/actions-codespell | ||
name: codespell | ||
on: [push, pull_request] | ||
permissions: | ||
contents: read | ||
jobs: | ||
codespell: | ||
name: Check for spelling errors | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: codespell-project/actions-codespell@master |
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 |
---|---|---|
|
@@ -32,7 +32,7 @@ jobs: | |
- uses: actions/[email protected] | ||
- name: Set up dependencies | ||
run: | | ||
brew instal automake autoconf libtool m4 open-mpi zlib | ||
brew install automake autoconf libtool m4 open-mpi zlib | ||
- name: Install HDF5 | ||
run: | | ||
cd ${GITHUB_WORKSPACE} | ||
|
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
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
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
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
## Case Studies | ||
* [E3SM I/O kernel](./E3SM_IO.md) - Performance study of the I/O kernel of [E3SM](https://github.com/E3SM-Project/E3SM) and comparison with other I/O methods. | ||
* [WRF](./WRF.md) - Performance study of the [WRF](https://github.com/wrf-model/WRF) applicaiton. | ||
* [WRF](./WRF.md) - Performance study of the [WRF](https://github.com/wrf-model/WRF) application. |
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
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
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
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
Oops, something went wrong.