Skip to content

sort diagnostics and select the closest one on navigation #4412

sort diagnostics and select the closest one on navigation

sort diagnostics and select the closest one on navigation #4412

Workflow file for this run

name: main
on:
push:
branches:
- main
paths-ignore:
- ".github/workflows/docs.yml"
- "docs/**"
pull_request:
branches:
- main
paths-ignore:
- ".github/workflows/docs.yml"
- "docs/**"
jobs:
Unittesting:
name: Unittesting (${{ matrix.os }})
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- if: ${{ matrix.os == 'macOS-latest' }}
run: brew unlink openssl
- uses: SublimeText/UnitTesting/actions/setup@v1
- uses: SublimeText/UnitTesting/actions/run-tests@v1
with:
coverage: true
Lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.8'
- run: sudo apt update
- run: sudo apt install --no-install-recommends -y x11-xserver-utils
- run: pip3 install mypy==0.971 flake8==5.0.4 pyright==1.1.289 yapf==0.31.0 --user
- run: echo "$HOME/.local/bin" >> $GITHUB_PATH
# - run: mypy -p plugin
- run: flake8 plugin tests
- run: pyright plugin