Update 2025-05-21-this-week-in-rust.md to add From C# to Rust: A 42-Day Developer Challenge blog post #9451
  
    
      This file contains hidden or 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
    
  
  
    
  | name: Correctness Checks | |
| on: [push, pull_request] | |
| jobs: | |
| Run-Markdown-Checks: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: Install Python dependencies | |
| uses: py-actions/py-dependency-install@v4 | |
| with: | |
| path: "tools/requirements.txt" | |
| update-pip: "false" | |
| update-setuptools: "false" | |
| update-wheel: "false" | |
| - name: inspect_links | |
| run: python3 tools/inspect_links.py --num-warn 5 | |
| - name: inspect_markdown | |
| run: python3 tools/inspect_markdown.py --num-recent 5 |