diff --git a/.gitea/workflows/testlinks.yml b/.gitea/workflows/testlinks.yml index 724fefe..8190d7a 100644 --- a/.gitea/workflows/testlinks.yml +++ b/.gitea/workflows/testlinks.yml @@ -4,12 +4,17 @@ on: - pull_request jobs: - check_urls: + build: + runs-on: ubuntu-latest + steps: - - name: Checkout repository - uses: actions/checkout@v2 - - name: Link check action - uses: adriancoman/link-checks-action@0.1.0 - with: - file-to-check: "README.md" \ No newline at end of file + - uses: actions/checkout@v3 + - name: Set up Ruby 2.6 + uses: ruby/setup-ruby@v1 + with: + ruby-version: '2.6' + - name: Checks + run: | + gem install awesome_bot + awesome_bot README.md --allow-ssl -a 302,429 -w xbmc/xbmc \ No newline at end of file