-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Updated the tutorial document. 1. Corrected the spelling mistake -> (sigular to single) 2. Corrected the statement -> the number of dimensions is the rank of the array. 3. Made 2 more small changes. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Fix typo * Updated README.md file, Added contribution Guidelines section, Updated the installation, and Hacking sections with code snippets. * Added scripts, in the Getting Started section, inspired from the README of Tensorflow. * Added resources list in the Getting started section, and Updated the contributing Guidelines sections, (inspired from Numpy, Scipy's README). * Provided a quick guide that tells everything about the GSoC 2023 program in the contributing Guidelines section. * Created a new file that will work as a GitHub action to check all markdown-files in the root of the repository for any broken links. (It runs only once a week). * Changed one of the badge under the Project status. Co-authored-by: Claudia Comito <[email protected]> * Added a section- New, which might be used to announce any news. --------- Co-authored-by: SaiSuraj27 <[email protected]> Co-authored-by: Claudia Comito <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
bcea48a
commit fade48d
Showing
2 changed files
with
117 additions
and
45 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,20 @@ | ||
name: Markdown Links Check | ||
# runs every monday at 9 am | ||
on: | ||
schedule: | ||
- cron: "0 9 * * 1" | ||
|
||
jobs: | ||
check-links: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
- uses: gaurav-nelson/github-action-markdown-link-check@v1 | ||
# checks all markdown files from root but ignores subfolders | ||
# By Removing the max-depth variable we can modify it -> to check all the .md files in the entire repo. | ||
with: | ||
use-quiet-mode: 'yes' | ||
# Specifying yes to show only errors in the output | ||
use-verbose-mode: 'yes' | ||
# Specifying yes to show detailed HTTP status for checked links. | ||
max-depth: 0 |
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