Compare commits

...

12 Commits

Author SHA1 Message Date
Sandeep chauhan b1b831d048
Merge 411913c027 into 3e5b5a51d1 2024-11-19 21:22:55 +00:00
Leithen 3e5b5a51d1
Skip check if file is not .yml or .md (#11760) 2024-11-19 16:22:42 -05:00
Sandeep chauhan 411913c027
Update free-programming-books-langs.md 2024-10-02 12:06:44 +05:30
Sandeep chauhan e9cbccf8cb
Update free-programming-books-langs.md 2024-10-02 11:58:32 +05:30
Sandeep chauhan dfe81f86a6
Update free-programming-books-langs.md 2024-10-02 11:52:06 +05:30
Sandeep chauhan 0d84cc009f
Update free-programming-books-langs.md 2024-10-02 11:47:39 +05:30
Sandeep chauhan 254099bcbd
Update free-programming-books-langs.md 2024-10-02 11:44:02 +05:30
Sandeep chauhan c683b48567
Update free-programming-books-langs.md 2024-10-02 11:39:33 +05:30
Sandeep chauhan 56f5ad7ab7
Update free-programming-books-langs.md 2024-10-02 11:37:55 +05:30
Sandeep chauhan 885f717690
Update free-programming-books-langs.md 2024-10-02 11:26:23 +05:30
Sandeep chauhan 1c5c88c0e4
Update free-programming-books-langs.md
fix space error
2024-10-02 11:25:37 +05:30
Sandeep chauhan 214508e47b
Update free-programming-books-langs.md
add The.Complete.Developer.Master.the.Full.Stack.With.TypeScript.React.Next.js.MongoDB.and.Docker.
2024-10-02 11:15:31 +05:30
2 changed files with 12 additions and 2 deletions

View File

@ -74,14 +74,17 @@ jobs:
fail-fast: false
steps:
- name: Checkout
if: ${{ endsWith(matrix.file, '.yml') || endsWith(matrix.file, '.md') }}
uses: actions/checkout@v4
with:
fetch-depth: ${{ needs.get-changed-files.outputs.fetch-depth }}
- name: Setup Ruby v2.6
if: ${{ endsWith(matrix.file, '.yml') || endsWith(matrix.file, '.md') }}
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.6
- name: Install awesome_bot
if: ${{ endsWith(matrix.file, '.yml') || endsWith(matrix.file, '.md') }}
run: |
gem install awesome_bot
- name: Set output
@ -101,6 +104,7 @@ jobs:
echo "FILEPATH=${file_path}" >> "$GITHUB_OUTPUT"
- name: "Check URLs of file: ${{ matrix.file }}"
if: ${{ endsWith(matrix.file, '.yml') || endsWith(matrix.file, '.md') }}
run: |
awesome_bot "${{ matrix.file }}" --allow-redirect --allow-dupe --allow-ssl || true;
- uses: actions/upload-artifact@v4

View File

@ -62,6 +62,7 @@ Books on general-purpose programming that don't focus on a specific language are
* [Forth](#forth)
* [Fortran](#fortran)
* [FreeBSD](#freebsd)
* [Fullstack](#fullstack)
* [Go](#go)
* [Graphs](#graphs)
* [GraphQL](#graphql)
@ -799,9 +800,9 @@ Books on general-purpose programming that don't focus on a specific language are
* [Modern Fortran Tutorial](https://masuday.github.io/fortran_tutorial/) - Yutaka Masuda (HTML)
* [Professional Programmers Guide to Fortran77 (2005)](https://www.star.le.ac.uk/~cgp/prof77.pdf) - Clive G. Page (PDF)
* [Self Study Guide 2: Programming in Fortran 95](http://www.mrao.cam.ac.uk/~rachael/compphys/SelfStudyF95.pdf) - Dr Rachael Padman (PDF)
* [User Notes On Fortran Programming (UNFP): An open cooperative practical guide (1998)](https://www.ibiblio.org/pub/languages/fortran/) - Abraham Agay, Arne Vajhoej, et al. (HTML)
* [User Notes On Fortran Programming (UNFP): An open cooperative practical guide (1998)](https://www.ibiblio.org/pub/languages/fortran/) - Abraham Agay, Arne Vajhoej,et al. (HTML)
### FreeBSD
* [Books and Articles from FreeBSD Site](http://www.freebsd.org/docs/books.html)
@ -809,6 +810,11 @@ Books on general-purpose programming that don't focus on a specific language are
* [Using C on the UNIX System](http://www.bitsinthewind.com/about-dac/publications/using-c-on-the-unix-system) - David A. Curry
### Fullstack
* [The Complete Developer Master the Full Stack With TypeScript](https://drive.google.com/file/d/1ETe5CsDmU86H1lLNRXspvEQdyPbDHnTl/view?usp=sharing) - Martin Krause
### Go
* [An Introduction to Programming in Go](https://www.golang-book.com/books/intro) - Caleb Doxsey