diff --git a/.github/mlc_config.json b/.github/mlc_config.json new file mode 100644 index 0000000..28ad1ab --- /dev/null +++ b/.github/mlc_config.json @@ -0,0 +1,7 @@ +{ + "timeout": "20s", + "retryOn429": true, + "retryCount": 5, + "fallbackRetryDelay": "30s", + "aliveStatusCodes": [200, 206] +} diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..b77c259 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,12 @@ +name: Check Markdown links + +on: [ push, pull_request ] +jobs: + markdown-link-check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: gaurav-nelson/github-action-markdown-link-check@v1 + with: + use-quiet-mode: 'yes' + config-file: '.github/mlc_config.json'