stubs #877
This file contains 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: stubs | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.number }}-${{ github.event.ref }} | |
cancel-in-progress: true | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
schedule: | |
- cron: '0 3 * * *' | |
workflow_dispatch: | |
jobs: | |
generate: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- run: sudo apt update && sudo apt install -y binutils libpugixml-dev | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: 3.13 | |
- uses: astral-sh/setup-uv@v4 | |
- run: uv pip install -e .[stubs] --quiet --system | |
- run: mne-lsl sys-info --developer | |
- run: python tools/stubgen.py | |
- name: Push stub files | |
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' | |
env: | |
GH_TOKEN: ${{ github.token }} | |
run: | | |
git config user.name 'github-actions[bot]' | |
git config user.email 'github-actions[bot]@users.noreply.github.com' | |
if [ -n "$(git status --porcelain)" ]; then | |
branch_name="update-stub-files-$(date +'%Y%m%d-%H%M%S')" | |
git checkout -b "$branch_name" | |
git add src/mne_lsl/\*.pyi | |
git commit -m "deploy stub files [ci skip]" | |
git push --set-upstream origin "$branch_name" | |
gh pr create --title "Update stub files" --body "Auto-generated PR for updating stub files." --base main | |
fi |