Compare commits
3 Commits
008d5fdac6
...
0bcc6bbd88
Author | SHA1 | Date |
---|---|---|
Tausif Raza | 0bcc6bbd88 | |
Leithen | 3e5b5a51d1 | |
tausif | f4046ca93d |
|
@ -74,14 +74,17 @@ jobs:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
if: ${{ endsWith(matrix.file, '.yml') || endsWith(matrix.file, '.md') }}
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: ${{ needs.get-changed-files.outputs.fetch-depth }}
|
fetch-depth: ${{ needs.get-changed-files.outputs.fetch-depth }}
|
||||||
- name: Setup Ruby v2.6
|
- name: Setup Ruby v2.6
|
||||||
|
if: ${{ endsWith(matrix.file, '.yml') || endsWith(matrix.file, '.md') }}
|
||||||
uses: ruby/setup-ruby@v1
|
uses: ruby/setup-ruby@v1
|
||||||
with:
|
with:
|
||||||
ruby-version: 2.6
|
ruby-version: 2.6
|
||||||
- name: Install awesome_bot
|
- name: Install awesome_bot
|
||||||
|
if: ${{ endsWith(matrix.file, '.yml') || endsWith(matrix.file, '.md') }}
|
||||||
run: |
|
run: |
|
||||||
gem install awesome_bot
|
gem install awesome_bot
|
||||||
- name: Set output
|
- name: Set output
|
||||||
|
@ -101,6 +104,7 @@ jobs:
|
||||||
|
|
||||||
echo "FILEPATH=${file_path}" >> "$GITHUB_OUTPUT"
|
echo "FILEPATH=${file_path}" >> "$GITHUB_OUTPUT"
|
||||||
- name: "Check URLs of file: ${{ matrix.file }}"
|
- name: "Check URLs of file: ${{ matrix.file }}"
|
||||||
|
if: ${{ endsWith(matrix.file, '.yml') || endsWith(matrix.file, '.md') }}
|
||||||
run: |
|
run: |
|
||||||
awesome_bot "${{ matrix.file }}" --allow-redirect --allow-dupe --allow-ssl || true;
|
awesome_bot "${{ matrix.file }}" --allow-redirect --allow-dupe --allow-ssl || true;
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v4
|
||||||
|
|
|
@ -116,6 +116,7 @@
|
||||||
* [Windows Phone](#windows-phone)
|
* [Windows Phone](#windows-phone)
|
||||||
* [WordPress](#wordpress)
|
* [WordPress](#wordpress)
|
||||||
* [YAML](#yaml)
|
* [YAML](#yaml)
|
||||||
|
* [Neovim](#Neovim)
|
||||||
|
|
||||||
|
|
||||||
### 0 - MOOC
|
### 0 - MOOC
|
||||||
|
@ -1848,3 +1849,9 @@
|
||||||
|
|
||||||
* [Complete YAML Course - Beginner to Advanced for DevOps and more!](https://www.youtube.com/watch?v=IA90BTozdow) - Kunal Kushwaha
|
* [Complete YAML Course - Beginner to Advanced for DevOps and more!](https://www.youtube.com/watch?v=IA90BTozdow) - Kunal Kushwaha
|
||||||
|
|
||||||
|
|
||||||
|
### Neovim
|
||||||
|
|
||||||
|
* [From 0 to IDE in NEOVIM from scratch](https://www.youtube.com/watch?v=zHTeCSVAFNY&list=PLsz00TDipIffreIaUNk64KxTIkQaGguqn) - typecraft
|
||||||
|
* [The Only Video You Need to Get Started with Neovim](https://www.youtube.com/watch?v=m8C0Cq9Uv9o) - TJ DeVries
|
||||||
|
* [Teaching Neovim From Scratch To A Noob](https://youtu.be/-ybCiHPWKNA?si=SDzToayfJ0EBpADn) - TheVimeagen
|
Loading…
Reference in New Issue