Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/workflows/run_markdown_code_checks.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
name: Markdown code checks
run-name: Markdown code checks
on:
pull_request:
jobs:
detect_changes:
runs-on: ubuntu-latest
name: Detect changes in Markdown files
permissions:
pull-requests: read
outputs:
markdown: ${{ steps.filter.outputs.markdown }}
steps:
- uses: dorny/paths-filter@v3
id: filter
Comment thread
forstmeier marked this conversation as resolved.
with:
filters: |
markdown:
- '**/*.md'
- '**/*.markdown'
run_markdown_code_checks:
needs: detect_changes
if: ${{ needs.detect_changes.outputs.markdown == 'true' }}
name: Run Markdown code checks
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Flox
uses: flox/install-flox-action@v2
- name: Run Markdown code checks
uses: flox/activate-action@v1
with:
command: mask development markdown all
19 changes: 19 additions & 0 deletions .github/workflows/run_python_code_checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,26 @@ run-name: Python code checks
on:
pull_request:
jobs:
detect_changes:
runs-on: ubuntu-latest
name: Detect changes in Python files
permissions:
pull-requests: read
outputs:
python: ${{ steps.filter.outputs.python }}
steps:
- uses: dorny/paths-filter@v3
id: filter
Comment thread
forstmeier marked this conversation as resolved.
with:
filters: |
python:
- '**/*.py'
- '**/*.pyi'
- '**/pyproject.toml'
- '**/uv.lock'
run_python_code_checks:
needs: detect_changes
if: ${{ needs.detect_changes.outputs.python == 'true' }}
name: Run Python code checks
Comment thread
forstmeier marked this conversation as resolved.
runs-on: ubuntu-latest
steps:
Expand Down
18 changes: 18 additions & 0 deletions .github/workflows/run_rust_code_checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,25 @@ run-name: Rust code checks
on:
pull_request:
jobs:
detect_changes:
runs-on: ubuntu-latest
name: Detect Rust code changes
permissions:
pull-requests: read
outputs:
rust: ${{ steps.filter.outputs.rust }}
steps:
- uses: dorny/paths-filter@v3
id: filter
Comment thread
forstmeier marked this conversation as resolved.
with:
filters: |
rust:
- '**/*.rs'
- '**/Cargo.toml'
- '**/Cargo.lock'
run_rust_code_checks:
needs: detect_changes
if: ${{ needs.detect_changes.outputs.rust == 'true' }}
name: Run Rust code checks
runs-on: ubuntu-latest
steps:
Expand Down