From 3a5fe5d1ddc0389566ea0ea2644f7be9520cd685 Mon Sep 17 00:00:00 2001 From: Sergey Karmanov <ppoocpel8888@gmail.com> Date: Thu, 3 Jul 2025 03:28:20 +0300 Subject: [PATCH] Add link tester to CI --- .gitea/workflows/testlinks.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitea/workflows/testlinks.yml diff --git a/.gitea/workflows/testlinks.yml b/.gitea/workflows/testlinks.yml new file mode 100644 index 0000000..b8aa641 --- /dev/null +++ b/.gitea/workflows/testlinks.yml @@ -0,0 +1,16 @@ +name: Test links +on: + - push + - pull_request + +jobs: + check_urls: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v2 + - name: Link check action + uses: serega404/links-check-action@v0.0.1 + with: + filePath: "README.md" + ignoreCodes: "403,418" \ No newline at end of file