Fix Complex number custom formatting for negative imaginary parts #58080
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: Markdownlint | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "**/*.md" | |
- ".markdownlint-cli2.jsonc" | |
- ".github/workflows/markdownlint.yml" | |
- ".github/workflows/markdownlint-problem-matcher.json" | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
permissions: | |
statuses: write | |
steps: | |
- name: Harden Runner | |
uses: step-security/harden-runner@002fdce3c6a235733a90a27c80493a3241e56863 # v2.12.1 | |
with: | |
egress-policy: audit | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: DavidAnson/markdownlint-cli2-action@992badcdf24e3b8eb7e87ff9287fe931bcb00c6e # v20.0.0 | |
with: | |
config: ".markdownlint-cli2.jsonc" | |
globs: "**/*.md" |