Thanks to visit codestin.com
Credit goes to github.com

Skip to content

DOC: document fmt_xdata, fmt_ydata, and fmt_zdata #11429

DOC: document fmt_xdata, fmt_ydata, and fmt_zdata

DOC: document fmt_xdata, fmt_ydata, and fmt_zdata #11429

Workflow file for this run

---
name: Mypy Stubtest
on: [pull_request]
permissions:
contents: read
jobs:
mypy-stubtest:
name: mypy-stubtest
runs-on: ubuntu-latest
permissions:
checks: write
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Set up Python 3
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
with:
python-version: '3.11'
- name: Set up reviewdog
uses: reviewdog/action-setup@d8edfce3dd5e1ec6978745e801f9c50b5ef80252 # v1.4.0
- name: Install tox
run: python -m pip install tox
- name: Run mypy stubtest
env:
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
set -o pipefail
tox -e stubtest | \
sed -e "s!.tox/stubtest/lib/python3.11/site-packages!lib!g" | \
reviewdog \
-efm '%Eerror: %m' \
-efm '%CStub: in file %f:%l' \
-efm '%CStub: in file %f' \
-efm '%+CRuntime:%.%#' \
-efm '%+CMISSING' \
-efm '%+Cdef %.%#' \
-efm '%+C<%.%#>' \
-efm '%Z' \
-reporter=github-check -tee -name=mypy-stubtest \
-filter-mode=nofilter