-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #309 from alegrey91/docs/fix-broken-link
docs: fix broken links
- Loading branch information
Showing
9 changed files
with
105 additions
and
120 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,13 @@ | ||
name: Markdown link check | ||
on: | ||
push: | ||
branches: [master, dev] | ||
jobs: | ||
markdown-link-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c | ||
- name: Check links | ||
uses: gaurav-nelson/github-action-markdown-link-check@5c5dfc0ac2e225883c0e5f03a85311ec2830d368 | ||
with: | ||
use-verbose-mode: 'yes' |
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,39 +1,31 @@ | ||
name: update-csvs | ||
|
||
on: | ||
push: | ||
branches: [ dev ] | ||
|
||
branches: [dev] | ||
jobs: | ||
once: | ||
name: Build, Test, Create And Generate releaseDev | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.19 | ||
|
||
- name: Test Regoes | ||
working-directory: testrunner | ||
run: | | ||
apt update && apt install -y cmake | ||
GOPATH=$(go env GOPATH) make | ||
- name: Run export script | ||
run: | | ||
OUTPUT=pre-release python ./scripts/export.py | ||
rm -r releaseDev | ||
cp -R pre-release releaseDev | ||
- name: stage changed files | ||
run: git add . | ||
|
||
- name: Commit & Push changes | ||
uses: Andro999b/[email protected] | ||
with: | ||
branch: dev | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
- uses: actions/checkout@50fbc622fc4ef5163becd7fab6573eac35f8462e | ||
- name: Set up Go | ||
uses: actions/setup-go@bfdd3570ce990073878bf10f6b2d79082de49492 | ||
with: | ||
go-version: 1.19 | ||
- name: Test Regoes | ||
working-directory: testrunner | ||
run: | | ||
apt update && apt install -y cmake | ||
GOPATH=$(go env GOPATH) make | ||
- name: Run export script | ||
run: | | ||
OUTPUT=pre-release python ./scripts/export.py | ||
rm -r releaseDev | ||
cp -R pre-release releaseDev | ||
- name: stage changed files | ||
run: git add . | ||
- name: Commit & Push changes | ||
uses: Andro999b/push@c77535fe7a94645f7ceca83e48e6cc977620710e | ||
with: | ||
branch: dev | ||
github_token: ${{ secrets.GITHUB_TOKEN }} |
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,25 +1,20 @@ | ||
name: test regos | ||
|
||
on: | ||
pull_request: | ||
branches: [ dev, master ] | ||
types: [ opened ] | ||
|
||
branches: [dev, master] | ||
types: [opened] | ||
jobs: | ||
once: | ||
name: Build, Test Regos | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.19 | ||
|
||
- name: Test Regoes | ||
working-directory: testrunner | ||
run: | | ||
apt update && apt install -y cmake | ||
GOPATH=$(go env GOPATH) make | ||
- uses: actions/checkout@50fbc622fc4ef5163becd7fab6573eac35f8462e | ||
- name: Set up Go | ||
uses: actions/setup-go@bfdd3570ce990073878bf10f6b2d79082de49492 | ||
with: | ||
go-version: 1.19 | ||
- name: Test Regoes | ||
working-directory: testrunner | ||
run: |- | ||
apt update && apt install -y cmake | ||
GOPATH=$(go env GOPATH) make |
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,29 +1,24 @@ | ||
name: Updating documentation | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
|
||
branches: [master] | ||
jobs: | ||
once: | ||
name: Upload to documentation | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@dc323e67f16fb5f7663d20ff7941f27f5809e9b6 | ||
name: checkout repo content | ||
|
||
- name: setup python | ||
uses: actions/setup-python@v2 | ||
uses: actions/setup-python@75f3110429a8c05be0e1bf360334e4cced2b63fa | ||
with: | ||
python-version: 3.8 | ||
|
||
python-version: 3.8 | ||
- name: install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install requests | ||
- name: execute upload script | ||
- name: execute upload script | ||
env: | ||
README_API_KEY: ${{ secrets.README_API_KEY }} | ||
run: | | ||
python ./scripts/upload-readme.py | ||
run: |- | ||
python ./scripts/upload-readme.py |
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