From 1734afa55151eecdcade0b959ba7ea8ac3550b24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E7=99=BD=E4=BA=91?= <71159641+littlewhitecloud@users.noreply.github.com> Date: Sun, 12 Jan 2025 11:57:53 +0800 Subject: [PATCH] split it into another test --- .github/workflows/linux.yml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index da8f28c6..da2cc7b8 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -23,6 +23,17 @@ jobs: version: 2.7.0 - run: editorconfig-checker + markdownlink-checker: + timeout-minutes: 1 + runs-on: ubuntu-latest + steps: + - uses: actions/setup-python@v5 + with: + python-version: '3.13' + - run: pip install requests + - name: "Check the links in the markdown files" + run: python check-markdown-links.py + test: timeout-minutes: 5 runs-on: ubuntu-22.04 @@ -59,15 +70,8 @@ jobs: - uses: actions/checkout@v3 - run: sudo apt update - run: sudo apt install -y llvm-{11,13,14}-dev clang-{11,13,14} make - - run: LLVM_CONFIG=llvm-config-11 ./doctest.sh - run: make clean - run: LLVM_CONFIG=llvm-config-13 ./doctest.sh - run: make clean - run: LLVM_CONFIG=llvm-config-14 ./doctest.sh - - uses: actions/setup-python@v5 - with: - python-version: '3.13' - - run: pip install requests - - name: "Check the links in the markdown files" - run: python check-markdown-links.py